-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "api-server",
"version": "0.1.0",
"description": "",
"engines": {
"npm": ">=3"
},
"scripts": {
"start-dev": "nodemon -r dotenv/config src/web/index.js dotenv_config_path=dotenv/development.env",
"start": "node -r dotenv/config src/web/index.js dotenv_config_path=dotenv/production.env",
"test": "jest",
"test:watch": "npm run test -- --watch",
"tw": "npm run test:watch",
"test:CI": "babel-node tools/testCi.js",
"test:cover": "npm run test -- --coverage ",
"test:cover:CI": "npm run test:CI -- --coverage && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"open:cover": "npm run test:cover && opn ./coverage/lcov-report/index.html"
},
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "1.17.2",
"cors": "2.8.3",
"dotenv": "4.0.0",
"express": "4.15.3",
"express-async-wrap": "1.0.0",
"express-unit": "1.1.0",
"jsonwebtoken": "8.0.0",
"letsencrypt-express": "2.0.6",
"lodash": "4.17.4",
"mongodb": "2.2.30",
"object-assign": "4.1.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"pretty-format": "21.0.2"
},
"devDependencies": {
"connect-history-api-fallback": "1.3.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": ""
}
}