-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development nodemon ./bin/www",
"serve": "cross-env NODE_ENV=production forever start ./bin/www",
"forever": "forever",
"test": "mocha --file ./test/helpers/index.js ./test/**/*.spec.js --timeout 10000 --exit"
},
"dependencies": {
"acorn": "^6.0.4",
"aws-sdk": "^2.403.0",
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"forever": "^1.0.0",
"fxjs2": "^0.2.1",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"morgan": "~1.9.0",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"pug": "2.0.0-beta11",
"socket.io": "^2.2.0",
"swagger-jsdoc": "^3.2.6",
"swagger-ui-express": "^4.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}