-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
59
60
61
62
63
{
"name": "plate-template",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"start": "next start",
"sync": "tsx --tsconfig ./scripts/tsconfig.scripts.json scripts/sync.mts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@udecode/cn": "^42.0.0",
"@udecode/plate": "^42.1.2",
"@udecode/plate-basic-elements": "^42.1.1",
"@udecode/plate-basic-marks": "^42.0.0",
"class-variance-authority": "0.7.1",
"clsx": "^2.1.1",
"lucide-react": "0.469.0",
"next": "^15.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "2.6.0",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"encoding": "^0.1.13",
"eslint": "^8.56.0",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.3",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.1",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"scheduler"
]
}
}
}