-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "plex-mpv-client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:backend": "cd backend && npm run dev",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:backend\"",
"build": "vite build",
"build:backend": "cd backend && npm run build",
"build:all": "npm run build && npm run build:backend",
"preview": "vite preview",
"backend:install": "cd backend && npm install"
},
"dependencies": {
"dashjs": "^5.0.3",
"hls.js": "^1.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^3.3.2",
"react-router-dom": "^6.22.3",
"react-video-seek-slider": "^8.0.3"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.4.0",
"vite": "^5.0.0"
}
}