-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 902 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
{
"name": "alt-spotify",
"version": "1.0.0",
"description": "POC for an alternative client to spotify",
"main": "src/alt-spotify.js",
"scripts": {
"test": "prettier && eslint",
"start": "run-p start:*",
"start:frontend": "serve public",
"start:backend": "node ./scripts/run-alt-spotify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giltayar/alt-spotify.git"
},
"keywords": [],
"author": "Gil Tayar <gil@tayar.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/giltayar/alt-spotify/issues"
},
"homepage": "https://github.com/giltayar/alt-spotify#readme",
"devDependencies": {
"eslint": "^6.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"serve": "^11.2.0"
},
"dependencies": {
"cors": "^2.8.5",
"fastify": "^2.8.0",
"fastify-cors": "^2.1.3",
"node-fetch": "^2.6.0"
}
}