-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commit": "cz",
"typecheck": "next typegen && tsc --noEmit",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/cz-commitlint": "^20.5.1",
"@commitlint/types": "^20.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@next/bundle-analyzer": "^16.2.1",
"@prettier/plugin-oxc": "^0.1.3",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"commitizen": "^4.3.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"knip": "^6.1.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}