-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.6 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "storyboard-ai-music-video-storyboarder",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "20.x || 22.x || 24.x"
},
"overrides": {
"rimraf": "^6.1.3",
"glob": "^13.0.6",
"minimatch": "^10.2.2"
},
"scripts": {
"dev": "vite",
"predev:server": "npm run check:sqlite",
"build": "vite build",
"build:web": "vite build",
"build:server": "tsc -p tsconfig.server.json --outDir dist-server",
"build:all": "npm run build:web && npm run build:server",
"dev:all": "npx concurrently \"npm run dev\" \"npm run dev:server\"",
"db:reset": "node -e \"require('fs').rmSync('data/storyboard.db', {force:true})\" && npm run seed",
"ci:build": "vite build",
"ci:check-bundle": "node scripts/check-bundle-sizes.mjs",
"analyze": "cross-env ANALYZE=true vite build && echo Open dist/stats.html",
"typecheck": "tsc --noEmit",
"typecheck:server": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"dev:server": "tsx watch server/index.ts",
"start:server": "tsx server/index.ts",
"premigrate": "npm run check:sqlite",
"migrate": "tsx server/scripts/migrate.ts",
"preseed": "npm run check:sqlite",
"seed": "tsx server/scripts/seed.ts",
"check:sqlite": "node scripts/doctor-sqlite.mjs",
"fix:sqlite": "npm rebuild better-sqlite3 && npm run check:sqlite",
"precheck:db": "npm run check:sqlite",
"check:db": "tsx server/scripts/checkDb.ts",
"maintain": "tsx server/scripts/maintenance.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest run src/features",
"test:api": "vitest run server",
"test:unit": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/gateway": "^3.0.53",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/dom": "^1.7.4",
"@google/genai": "^1.24.0",
"@tiptap/extension-code-block-lowlight": "^3.8.0",
"@tiptap/react": "^3.8.0",
"@tiptap/starter-kit": "^3.8.0",
"ai": "^6.0.97",
"better-sqlite3": "^12.6.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jszip": "^3.10.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.468.0",
"mediabunny": "^1.32.0",
"multer": "^2.0.2",
"pino": "^9.5.0",
"react": "^19.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.0",
"sharp": "^0.34.4",
"yazl": "^3.3.1",
"zod": "^3.24.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jszip": "^3.4.0",
"@types/multer": "^2.0.0",
"@types/node": "^22.14.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/supertest": "^2.0.16",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/yazl": "^3.3.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.23",
"baseline-browser-mapping": "^2.9.11",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"rollup-plugin-visualizer": "^5.12.0",
"supertest": "^7.0.0",
"tailwindcss": "^4.1.18",
"tsc-files": "^1.1.4",
"tsx": "^4.19.1",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit"
]
}
}