-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "nextjs14-boilerplate",
"version": "0.1.0",
"private": true,
"description": "A Next.js 14 boilerplate with TypeScript, ESLint, Prettier, Husky, Tailwind CSS",
"author": {
"name": "Your Name",
"email": "example@example.com",
"url": "https://example.com"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./src --fix",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"clsx": "^2.1.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"next": "14.2.9",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.9",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"lint-staged": "^15.2.10",
"postcss": "^8",
"tailwindcss": "^3.4.11",
"typescript": "^5"
}
}