-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
{
"name": "goalgenius",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:studio": "drizzle-kit studio --config drizzle.config.ts",
"db:migrate:local": "wrangler d1 migrations apply goalgenius_db --local --config wrangler.jsonc",
"db:migrate:prod": "wrangler d1 migrations apply goalgenius_db --remote --config wrangler.jsonc",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.2",
"better-auth": "^1.2.7",
"date-fns": "^4.1.0",
"dompurify": "^3.2.4",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.41.0",
"framer-motion": "^12.3.1",
"kysely-d1": "^0.3.0",
"lucide-react": "^0.507.0",
"next": "15.4.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sqlite3": "^5.1.7",
"uuid": "^11.0.5",
"validator": "^13.12.0",
"xss": "^1.0.15",
"zod": "4.2.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250414.0",
"@libsql/client": "^0.15.3",
"@opennextjs/cloudflare": "~1.0.0-beta.0 || ^1.0.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.2",
"eslint-config-next": "15.4.10",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "^4.10.0"
}
}