-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.23 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
{
"name": "devblog",
"version": "0.1.0",
"private": true,
"scripts": {
"prisma:generate": "prisma generate",
"prisma:migrate:deploy": "prisma migrate deploy",
"postinstall": "prisma generate",
"dev": "prisma generate && next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint app eslint.config.mjs next.config.js postcss.config.js tailwind.config.js prisma.config.ts",
"lint:fix": "eslint app eslint.config.mjs next.config.js postcss.config.js tailwind.config.js prisma.config.ts --fix",
"typecheck": "next typegen && tsc --noEmit",
"check": "bun run lint && bun run typecheck",
"analyze": "prisma generate && ANALYZE=true next build --webpack",
"biome:check": "biome check .",
"biome:fix": "biome check --write ."
},
"dependencies": {
"@auth/prisma-adapter": "2.11.3",
"@hookform/resolvers": "5.9.1",
"@next/bundle-analyzer": "16.3.5",
"@prisma/adapter-pg": "7.10.0",
"@prisma/client": "7.10.0",
"@react-three/drei": "10.7.8",
"@react-three/fiber": "9.7.0",
"@vercel/analytics": "2.0.1",
"@vercel/blob": "2.8.0",
"@vercel/speed-insights": "2.0.0",
"chess.js": "1.4.0",
"next": "16.3.5",
"next-auth": "5.0.0-beta.32",
"pg": "8.23.0",
"phaser": "4.2.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "7.88.0",
"react-icons": "5.7.0",
"react-markdown": "10.1.0",
"rehype-highlight": "7.0.2",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"server-only": "0.0.1",
"slugify": "1.6.9",
"three": "0.186.0",
"three-stdlib": "2.36.1",
"unified": "11.0.5",
"unist-util-visit": "5.1.0",
"zod": "4.6.2"
},
"overrides": {
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7"
},
"devDependencies": {
"@biomejs/biome": "2.5.13",
"@tailwindcss/postcss": "4.3.3",
"@types/node": "24.13.4",
"@types/pg": "8.23.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7",
"@types/three": "0.186.0",
"dotenv": "17.4.2",
"eslint": "9.39.5",
"eslint-config-next": "16.3.5",
"postcss": "8.5.28",
"prisma": "7.10.0",
"tailwindcss": "4.3.3",
"typescript": "6.0.3"
},
"packageManager": "bun@1.4.0",
"engines": {
"node": ">=24.0.0 <25",
"bun": ">=1.4.0"
}
}