forked from holiber/video-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.43 KB
/
package.json
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
{
"name": "video-inspector",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "run-p dev:* --print-label",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"dev:server": "tsx watch server",
"dev:client": "wait-port 3000 && vite"
},
"dependencies": {
"@deepgram/sdk": "^2.4.0",
"@tanstack/react-query": "^4.0.0",
"@tensorflow/tfjs-node": "^4.15.0",
"@trpc-swr/client": "^2.0.1",
"@trpc/client": "^10.44.1",
"@trpc/react-query": "^10.44.1",
"@trpc/server": "^10.44.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/fs-extra": "^11.0.4",
"@types/three": "^0.161.2",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.16",
"axios": "^1.6.2",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-zoom": "^2.0.1",
"commander": "^11.1.0",
"cors": "^2.8.5",
"csv-parse": "^5.5.3",
"daisyui": "^4.4.19",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"lowdb": "^6.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-router5": "^8.0.1",
"router5": "^8.0.1",
"router5-plugin-browser": "^8.0.1",
"swr": "^2.2.4",
"tailwindcss": "^3.3.5",
"tsx": "^4.6.0",
"uuid": "^9.0.1",
"wait-port": "^1.1.0",
"waveform-data": "^4.3.0",
"wavesurfer.js": "^7.4.12",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@react-three/fiber": "^8.15.16",
"@tailwindcss/typography": "^0.5.10",
"@types/glob": "^8.1.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"chart.js": "^4.4.1",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"react-rnd": "^10.4.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}