-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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": "plate-template",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"lint": "next lint",
"lint:fix": "next lint --fix && prettier --write . --log-level warn",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@udecode/cn": "^43.0.0",
"@udecode/plate": "^43.0.5",
"@udecode/plate-basic-elements": "^43.1.0",
"@udecode/plate-basic-marks": "^43.0.1",
"class-variance-authority": "0.7.1",
"clsx": "^2.1.1",
"lucide-react": "0.474.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "3.0.1",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tailwindcss/postcss": "4.0.3",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"eslint-plugin-perfectionist": "4.8.0",
"eslint-plugin-unused-imports": "^4.1.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.4",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"scheduler"
]
}
}
}