-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.3 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
75
76
77
78
79
80
81
82
83
84
{
"name": "nextjs-template",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "next dev --inspect",
"analyze": "next experimental-analyze",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"prepare": "husky",
"lint-staged": "lint-staged",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"commit": "cz",
"test": "vitest run"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc}": [
"biome check --write --files-ignore-unknown=true"
]
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@loglayer/shared": "^4.1.0",
"@loglayer/transport-pino": "^3.0.2",
"@loglayer/transport-simple-pretty-terminal": "^3.0.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@tanstack/react-form": "^1.27.7",
"better-auth": "^1.6.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"loglayer": "^9.1.0",
"lucide-react": "^1.6.0",
"next": "16.2.6",
"next-safe-action": "^8.1.8",
"nuqs": "^2.8.9",
"pg": "^8.20.0",
"pino": "^10.3.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"serialize-error": "^13.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/pg": "^8.15.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.2.6",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^6",
"vitest": "^4.1.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}