-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
52
53
54
55
{
"name": "typescript-nextjs-starter",
"version": "1.0.0",
"private": true,
"description": "A TypeScript starter for Next.js that includes all you need to build amazing projects",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"license": "MIT",
"author": "João Pedro Schmitz (@jpedroschmitz)",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "next typegen && tsc --noEmit",
"build:analyze": "next build && next experimental-analyze",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --fix --type-aware",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"format:ci": "oxfmt --list-different .",
"postinstall": "husky"
},
"dependencies": {
"@t3-oss/env-nextjs": "0.13.11",
"babel-plugin-react-compiler": "1.0.0",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"zod": "4.4.3"
},
"devDependencies": {
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"oxfmt": "0.52.0",
"oxlint": "1.67.0",
"oxlint-tsgolint": "0.23.0",
"typescript": "6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"oxlint --fix",
"oxfmt --write --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@11.3.0"
}