-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "backend-rockker-music-app",
"version": "1.0.0",
"description": "API Backend for Music App, using Node JS, EXPRESS and Mongo DB",
"engines": {
"node": "12.18.3",
"npm": "6.14.8"
},
"main": "./api/index.js",
"scripts": {
"dev": "set DEBUG=app:* & nodemon ./api/index.js",
"devOsx": "DEBUG=app:* nodemon ./api/index.js",
"start": "DEBUG=app:* node api/index",
"seedApiKeys": "DEBUG=app:* node ./scripts/seedApiKeys.js",
"seedSpotify": "DEBUG=app:* node ./scripts/seedSpotifyData.js",
"seedUsers": "DEBUG=app:* node ./scripts/seedUsers.js",
"setup": "DEBUG=app:* node ./scripts/seedApiKeys.js && DEBUG=app:* node ./scripts/seedSpotifyData.js && DEBUG=app:* node ./scripts/seedUsers.js",
"test": "mocha --exit",
"coverage": "nyc npm run test",
"report": "nyc report --reporter=html && open coverage/index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"boom": "^7.3.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"emailjs": "^3.3.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.9",
"nodemailer": "^6.4.14",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"spotify-web-api-node": "^5.0.0",
"supports-color": "^7.2.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"flush-cache": "^1.0.1",
"jest": "^26.6.1",
"mocha": "^8.2.0",
"nodemon": "^2.0.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"proxyquire": "^2.1.3",
"should": "^13.2.3",
"sinon": "^9.2.1",
"supertest": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"nyc": {
"all": true,
"include": [
"api"
]
}
}