-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
{
"name": "rrb-server",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "nodemon server.js --exec babel-node",
"test": "nyc mocha --exit --require babel-polyfill --require babel-register ./test/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"heroku": "nodemon server.js --exec babel-node",
"travis": "mocha */*.test.js"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.4",
"morgan": "^1.9.1",
"nodemon": "^1.18.4",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.3.2",
"vm2": "^3.6.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-http": "^3.0.0",
"coveralls": "^3.0.2",
"mocha": "^4.0.1",
"nodemon": "^1.18.4",
"nyc": "^11.9.0"
},
"babel": {
"presets": [
"env"
]
}
}