-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "music-library-server",
"version": "1.0.0",
"description": "Backend for the music library",
"scripts": {
"start": "nodemon index.js",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors server --recursive --timeout 10000",
"apidoc": "apidoc -i server/routes/ -o docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shahvicky/music-library-server.git"
},
"author": "Vivek Shah <shahvicky1992@gmail.com>",
"dependencies": {
"bcrypt": "^3.0.5",
"bcrypt-promise": "^2.0.0",
"bluebird": "^3.5.3",
"body-parser": "1.18.2",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"debug": "^2.4.5",
"dotenv": "^4.0.0",
"express": "4.16.3",
"express-jwt": "5.3.1",
"express-validation": "1.0.2",
"express-winston": "2.5.0",
"helmet": "3.12.0",
"http-status": "1.0.1",
"joi": "14.3.1",
"lodash": "^4.17.11",
"method-override": "^2.3.10",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"parse-error": "^0.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^5.2.13",
"winston": "2.4.1",
"winston-daily-rotate-file": "3.3.2"
},
"devDependencies": {
"chai": "4.1.2",
"cross-env": "5.1.4",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"supertest": "^3.4.2",
"supertest-as-promised": "^4.0.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shahvicky/music-library-server/issues"
},
"homepage": "https://github.com/shahvicky/music-library-server#readme"
}