-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
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
{
"name": "nextjs-starter",
"version": "1.0.0",
"private": true,
"description": "A Next.js starter that includes all you need to build amazing projects",
"author": "abel chang<cwuyiqing@gmail.com>",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"export": "next build && next export",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"lint": "eslint --ignore-pattern .gitignore --fix",
"prepare": "husky",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-icons": "1.3.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"immer": "11.0.1",
"lucide-react": "0.556.0",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "1.0.7",
"zustand": "5.0.9"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@iconify-icon/react": "3.0.3",
"@tailwindcss/postcss": "4.1.17",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"autoprefixer": "10.4.22",
"eslint": "9.39.1",
"eslint-config-hyoban": "4.0.10",
"eslint-config-next": "16.0.7",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"postcss": "8.5.6",
"prettier": "3.7.4",
"tailwindcss": "4.1.17",
"typescript": "5.9.3"
},
"lint-staged": {
"./**/*.{ts,js,jsx,tsx}": [
"pnpm run lint",
"pnpm run format"
]
}
}