-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "deckforge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 56001",
"build": "NEXT_TELEMETRY_DISABLED=1 NODE_OPTIONS='--max-old-space-size=1536' next build",
"start": "next start -p 56001",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:sql-migrate": "bash scripts/migrate.sh",
"db:seed": "tsx --env-file=.env.local scripts/seed.ts",
"db:seed-demo": "tsx --env-file=.env.local scripts/seed-demo.ts",
"bootstrap:magic-link": "tsx --env-file=.env.local scripts/create-magic-link.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@uiw/react-codemirror": "^4.25.9",
"bcryptjs": "^3.0.3",
"drizzle-orm": "^0.38.4",
"handlebars": "^4.7.9",
"lucide-react": "^0.468.0",
"minio": "^8.0.7",
"nanoid": "^5.1.7",
"next": "^14.2.0",
"nodemailer": "^6.9.16",
"postgres": "^3.4.5",
"qrcode": "^1.5.4",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"server-only": "^0.0.1",
"zod": "^3.23.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/node": "^22.0.0",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"dotenv": "^17.4.0",
"drizzle-kit": "^0.30.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}