-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 743 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 743 Bytes
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
{
"name": "mixdown-api",
"version": "0.1.0",
"description": "Backend for mixdown",
"main": "backend/index.js",
"scripts": {
"test": "mocha --exit backend/test/*.js",
"start": "node .",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"author": "awrichardson6@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-stream-zip": "^1.8.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"spotify-web-api-node": "^5.0.0",
"swagger-client": "^3.9.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.1.3",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
}
}