-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "prawko",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db-create": "prisma db push",
"db-recreate": "rm prisma/dev.db && prisma db push",
"db-seed": "ts-node prisma/seed.ts",
"db-gui": "prisma studio",
"prepare-data": "ts-node utils/movies-preprocess.ts",
"build-demo": "ts-node utils/prepare-demo.ts && npm run db-create && npm run db-seed && npm run build && npm run start"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^6.1.2",
"@mui/material": "^6.1.2",
"@prisma/client": "^5.20.0",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/react-window": "^1.8.8",
"csv-parse": "^5.5.6",
"fluent-ffmpeg": "^2.1.3",
"fs-extra": "^11.2.0",
"next": "14.2.14",
"react": "^18",
"react-dom": "^18",
"react-window": "^1.8.10",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"postcss": "^8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}