-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "next-starter",
"private": true,
"description": "TODO: Add a description",
"license": "MIT",
"author": "Nova Eon <hi@eonova.me> (https://github.com/eonova/)",
"repository": {
"type": "git",
"url": "git+https://github.com/eonova/TODO: Add a name.git"
},
"type": "module",
"scripts": {
"dev": "pnpm with-env next dev --turbo -p 3000",
"build": "pnpm with-env next build",
"bundle-analyzer": "cross-env ANALYZE=true pnpm run build",
"clean": "rm -rf .next .content-collections .vercel",
"check:knip": "pnpm with-env knip",
"check:spelling": "cspell -c .cspell.json --no-progress --no-summary --no-must-find-files --unique",
"start": "next start",
"db:check": "pnpm with-env drizzle-kit check",
"db:generate": "pnpm with-env drizzle-kit generate",
"db:migrate": "pnpm with-env drizzle-kit migrate",
"db:push": "pnpm with-env drizzle-kit push",
"db:seed": "pnpm with-env tsx ./src/db/seed.ts",
"db:studio": "pnpm with-env drizzle-kit studio",
"with-env": "dotenv -e .env.local --",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"type-check": "tsc --noEmit",
"prepare": "simple-git-hooks",
"deps:up": "taze"
},
"peerDependencies": {
"pg": "^8"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@icons-pack/react-simple-icons": "^12.9.0",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@t3-oss/env-nextjs": "^0.13.6",
"@tanstack/react-query": "^5.77.2",
"@tanstack/react-query-devtools": "^5.77.2",
"@trpc/client": "^11.1.3",
"@trpc/server": "^11.1.3",
"@trpc/tanstack-react-query": "^11.1.3",
"better-auth": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.43.1",
"jotai": "^2.12.5",
"lucide-react": "^0.511.0",
"motion": "^12.15.0",
"next": "15.1.6",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.4",
"sonner": "^2.0.3",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.32"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eonova/eslint-config": "^0.3.1",
"@tailwindcss/postcss": "^4.1.7",
"@types/node": "^22.15.23",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"cspell": "^9.0.2",
"cz-git": "^1.11.1",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "^0.31.1",
"eslint": "^9.27.0",
"knip": "^5.58.1",
"lint-staged": "^16.1.0",
"picocolors": "^1.1.1",
"postcss": "^8.5.3",
"postcss-load-config": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"tailwindcss": "^4.1.7",
"taze": "^19.1.0",
"tsx": "^4.19.4",
"tw-animate-css": "^1.3.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix"
},
"packageManager": "pnpm@10.11.0",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm tsx ./scripts/verify-commit.ts"
}
}