-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 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
{
"name": "treetracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test-unit; npm run test-int; npm run test-auth",
"test-unit": "NODE_ENV=test mocha --require co-mocha 'lib/*.spec.js'",
"test-int": "NODE_ENV=test mocha --require co-mocha 'index.spec.js'",
"test-auth": "NODE_ENV=test mocha --require co-mocha 'lib/auth.spec.js'",
"server": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.1.0",
"bcrypt": "^3.0.5",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-bearer-token": "^2.1.1",
"jsonwebtoken": "8.1.0",
"morgan": "^1.9.1",
"nodemailer": "^4.4.1",
"pg": "^7.4.0",
"randomstring": "^1.1.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "3.5.0",
"co-mocha": "1.1.2",
"database-cleaner": "^1.3.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"supertest": "^4.0.2"
}
}