-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"fmt": "prettier --write \"**/*.{ts,tsx,mdx,json}\" --cache",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx,json}\" --cache",
"clean": "rm -rf .next node_modules",
"cleani": "rm -rf .next node_modules && bun i",
"prepare": "husky"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.11.1",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"lucide-react": "^0.454.0",
"next": "15.0.1",
"next-themes": "^0.3.0",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "22.8.1",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "9.13.0",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-6fc168f-20241025",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write --cache"
],
"*.{ts,tsx,mdx}": [
"next lint --fix ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=20.18.0"
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}