-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "node-spoty-player",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"dev": "nodemon --ignore client/ --ignore public/ server/index.ts",
"dev:client": "npm run dev --prefix client",
"build:client": "npm run build --prefix client",
"postinstall": "npm ci --prefix client"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/mkdirp": "^1.0.1",
"@types/node": "^15.0.1",
"@types/ws": "^7.4.2",
"nodemon": "^2.0.7",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"bson": "^4.3.0",
"cuid": "^2.1.8",
"fastify": "^3.15.1",
"fastify-multipart": "^4.0.5",
"fastify-static": "^4.0.1",
"fastify-websocket": "^3.2.0",
"mkdirp": "^1.0.4",
"spotify-web-api-node": "^5.0.2",
"ytdl-core": "^4.7.0",
"ytpl": "^2.2.0"
}
}