-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
61 lines (61 loc) · 1.78 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": "typescript-nextjs-starter",
"description": "A TypeScript starter for Next.js that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": "João Pedro Schmitz <[email protected]> (@jpedroschmitz)",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier . --write",
"format:ci": "prettier --list-different .",
"postinstall": "husky"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint \"src/**/*.+(ts|js|tsx)\" --fix",
"prettier . --write"
]
},
"dependencies": {
"next": "15.0.3",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/node": "22.9.3",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-sort-json": "4.0.0",
"typescript": "5.7.2"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}