-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "template",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"node": "22.x",
"pnpm": "9.x"
},
"scripts": {
"dev": "NODE_NO_WARNINGS=1 next dev --turbopack",
"build": "NODE_NO_WARNINGS=1 next build",
"start": "NODE_NO_WARNINGS=1 next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "pnpm dlx lefthook install",
"ts": "tsc"
},
"dependencies": {
"@nivalis/std": "1.3.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.476.0",
"next": "15.2.0",
"postcss": "8.5.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"server-only": "0.0.1",
"tailwind-merge": "3.0.2",
"turbo": "2.4.4"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@nivalis/eslint-config": "4.4.2",
"@nivalis/prettier-config": "3.5.2",
"@tailwindcss/postcss": "4.0.9",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "^22",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "9.21.0",
"lefthook": "1.11.2",
"lint-staged": "15.4.3",
"prettier": "3.5.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.0.9",
"tailwindcss-animate": "1.0.7",
"typescript": "5.7.3"
},
"lint-staged": {
"*": "eslint --quiet --fix"
}
}