-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "sql-training",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "dotenv -- drizzle-kit generate",
"db:migrate": "dotenv -- drizzle-kit migrate",
"db:push": "dotenv -- drizzle-kit push",
"db:studio": "dotenv -- drizzle-kit studio",
"db:seed:training": "dotenv -- tsx scripts/seed-training-db.ts",
"db:seed:challenges": "dotenv -- tsx scripts/seed-challenges.ts",
"db:seed": "pnpm db:seed:training && pnpm db:seed:challenges"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@tanstack/react-query": "^5.90.21",
"@trpc/client": "^11.11.0",
"@trpc/react-query": "^11.11.0",
"@trpc/server": "^11.11.0",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.576.0",
"next": "16.1.6",
"pg": "^8.19.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"superjson": "^2.2.6",
"zod": "^4.3.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@tailwindcss/oxide",
"lightningcss"
]
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}