-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"fmt": "prettier --write \"**/*.{ts,tsx,mdx,json}\" --cache",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx,json}\" --cache",
"clean": "rm -rf .next node_modules",
"cleani": "rm -rf .next node_modules && bun i",
"prepare": "husky"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0-rc.0",
"@t3-oss/env-nextjs": "^0.13.4",
"@xyflow/react": "^12.6.4",
"clsx": "^2.1.1",
"geist": "^1.4.2",
"lucide-react": "0.511.0",
"next": "^15.3.2",
"next-themes": "0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@tailwindcss/postcss": "^4.1.7",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint": "9.6.1",
"@types/node": "22.15.21",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"babel-plugin-react-compiler": "^19.0.0-beta-ebf51a3-20250411",
"eslint": "9.27.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react-compiler": "^19.0.0-beta-ebf51a3-20250411",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"postcss": "8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.7",
"typescript": "5.8.3"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write --cache"
],
"*.{ts,tsx,mdx}": [
"next lint ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=22.16.0"
}
}