-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check . --config .prettierrc.json",
"format:fix": "prettier --write . --max-warnings=0 --config .prettierrc.json",
"eslint": "eslint --fix . --ext .ts,.tsx",
"tsc": "tsc -p tsconfig.json --noEmit",
"prepare": "husky",
"security:audit": "pnpm audit",
"security:outdated": "pnpm outdated"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"classnames": "^2.5.1",
"daisyui": "^4.12.23",
"dexie": "^4.0.10",
"dexie-react-hooks": "^1.1.7",
"idb": "^8.0.1",
"idb-keyval": "^6.2.1",
"next": "15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"sass": "^1.83.1",
"use-sync-external-store": "^1.4.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"overrides": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
}