-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive",
"dev": "nodemon index.js",
"coverage": "istanbul cover node_modules/.bin/_mocha -- -- -u exports -R spec test/**/*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^6.3.2",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.0",
"cors": "^2.8.1",
"express": "^4.15.0",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"jwt-simple": "^0.5.1",
"mongoose": "^4.8.5",
"morgan": "^1.8.1",
"node-uuid": "^1.4.7",
"nodemailer": "^3.1.4",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
}
}