-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.44 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
{
"name": "ranking",
"version": "0.1.0-beta",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv",
"db:generate": "drizzle-kit generate --config server/drizzle.config.ts",
"db:local-apply": "wrangler d1 migrations apply DB --local",
"db:remote-apply": "wrangler d1 migrations apply DB --remote",
"lint": "biome check",
"format": "biome format --write",
"prepare": "husky"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.20.4",
"drizzle-orm": "^0.45.2",
"next": "16.3.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"server-only": "^0.0.1",
"zod": "^4.5.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"commitlint": "^21.2.2",
"devmoji": "^2.3.0",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "^4.127.1"
},
"packageManager": "pnpm@10.28.1",
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
}
}