-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "creatorflow",
"version": "0.1.0",
"private": true,
"description": "CreatorFlow — creator collaboration CRM + raw footage library for Willow & Stone Spa",
"scripts": {
"dev": "npm run db:ensure && next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push --skip-generate",
"db:seed": "tsx prisma/seed.ts",
"db:ensure": "tsx scripts/ensure-db.ts",
"db:reset": "tsx scripts/reset-db.ts",
"media:build": "tsx scripts/build-media.ts",
"backlog:sources": "tsx scripts/fetch-archive-sources.ts",
"backlog:build": "tsx scripts/build-backlog.ts",
"backlog:analyze": "tsx --env-file=.env scripts/analyze-backlog.ts",
"postinstall": "prisma generate",
"vercel-build": "prisma generate && prisma db push --skip-generate && tsx prisma/seed.ts && next build"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@prisma/client": "^6.3.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.474.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.17.16",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"postcss": "^8.5.1",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}