-
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.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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": "music-player",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node --env-file=.env server.mjs",
"dev:all": "node scripts/dev-all.mjs",
"build": "vite build",
"start": "node --env-file=.env server.mjs",
"lint": "eslint .",
"preview": "vite preview",
"test": "node --test",
"migrate:json-to-postgres": "node --env-file=.env scripts/migrate-json-to-postgres.mjs"
},
"dependencies": {
"@capacitor/core": "^8.1.0",
"@distube/ytdl-core": "^4.16.12",
"axios": "^1.13.6",
"colorthief": "^3.0.0",
"connect-timeout": "^1.9.1",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"http-proxy-middleware": "^3.0.5",
"ioredis": "^5.10.1",
"lucide-react": "^0.576.0",
"p-queue": "^9.1.0",
"pg": "^8.20.0",
"play-dl": "^1.9.7",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"youtubei.js": "^16.0.1"
},
"devDependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/cli": "^8.1.0",
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.3.1"
}
}