-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (56 loc) · 1.72 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
{
"name": "flint-studio",
"version": "0.55.0-beta",
"private": true,
"description": "FlintStudio 开源版 - 全 API 可配置的 AI 影视自动化多 Agent 协同平台",
"engines": {
"node": ">=18.18.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "concurrently --kill-others \"npm run dev:next\" \"npm run dev:worker\"",
"dev:next": "cross-env NODE_OPTIONS=\"--no-deprecation\" next dev --turbopack -H 0.0.0.0",
"dev:worker": "tsx watch --env-file=.env src/lib/workers/index.ts",
"build": "prisma generate && next build",
"start": "concurrently --kill-others \"npm run start:next\" \"npm run start:worker\"",
"start:next": "next start -H 0.0.0.0",
"start:worker": "tsx --env-file=.env src/lib/workers/index.ts",
"lint": "eslint .",
"clean": "rimraf .next",
"check:docker": "node scripts/check-docker.js"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.19.2",
"@swc/helpers": "^0.5.19",
"@xyflow/react": "^12.10.1",
"bcryptjs": "^3.0.2",
"bullmq": "^5.67.3",
"ioredis": "^5.9.2",
"lucide-react": "^0.575.0",
"mysql2": "^3.15.1",
"next": "^15.5.7",
"next-auth": "^4.24.11",
"next-intl": "^4.7.0",
"prisma": "^6.16.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"rimraf": "^6.1.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"typescript": "^5"
}
}