-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.87 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
{
"name": "devroast",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint src",
"format": "biome format src --write",
"check": "biome check src",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "set -a && source .env.local && set +a && drizzle-kit studio",
"seed": "tsx scripts/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@biomejs/biome": "^2.4.6",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@number-flow/react": "^0.6.0",
"@supabase/supabase-js": "^2.102.1",
"@tailwindcss/postcss": "^4.2.1",
"@trpc/client": "^11.16.0",
"@trpc/server": "^11.16.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"codemirror": "^6.0.2",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.2",
"next": "^16.1.6",
"pg": "^8.13.1",
"postcss": "^8.5.8",
"postgres": "^3.4.7",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@playwright/test": "^1.59.1",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"faker-js": "^1.0.0",
"tsx": "^4.21.0"
}
}