-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "fixspotify",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\" \"npm run build:server:watch\"",
"dev:client": "vite build --mode development --watch",
"dev:server": "nodemon dist/index.js",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --mode production",
"build:server": "tsc",
"build:server:watch": "tsc -w",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@distube/ytsr": "github:orcachillin/ytsr",
"@gurrrrrrett3/protocol": "^1.0.1",
"@rollup/plugin-replace": "^6.0.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^2.7.0",
"spotify-api.js": "^9.2.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.3",
"@types/node-fetch": "^2.6.11",
"colorthief": "^2.6.0",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"typescript": "^5.5.4",
"vite": "^5.4.3"
}
}