-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
61 lines (61 loc) · 1.62 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
{
"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<[email protected]>",
"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": "10.1.1",
"lucide-react": "0.468.0",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"zustand": "5.0.2"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@iconify-icon/react": "2.2.0",
"@types/node": "22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"autoprefixer": "10.4.20",
"eslint": "9.17.0",
"eslint-config-hyoban": "3.1.15",
"eslint-config-next": "15.1.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"postcss": "8.4.49",
"prettier": "3.4.2",
"tailwindcss": "3.4.16",
"typescript": "5.7.2"
},
"lint-staged": {
"./**/*.{ts,js,jsx,tsx}": [
"pnpm run lint",
"pnpm run format"
]
}
}