-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "nextjs-template",
"description": "A TypeScript template for Next.js 15 that includes all you need to build your next project.",
"version": "1.0.0",
"author": "Claudio Orlandi (@csorlandi)",
"license": "MIT",
"private": true,
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.+(ts|js|tsx)\"",
"lint:fix": "eslint \"src/**/*.+(ts|js|tsx)\" --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"format:ci": "prettier --list-different ."
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint \"src/**/*.+(ts|js|tsx)\" --fix",
"prettier . --write"
]
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.11.1",
"next": "15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5",
"typescript-eslint": "^8.18.1"
}
}