-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.6 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
46
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"eslint": "eslint src || ECHO.",
"jshint": "jshint src || ECHO.",
"lint": "npm run eslint",
"start": "nodemon --watch app.js --watch **/*",
"start:prod": "SET NODE_ENV=production && SET ENV_SERVER_API_ALLOW_HOSTS=* && SET ENV_SERVER_API_MONGODB_URI=mongodb://localhost:27017 && SET ENV_SERVER_API_PORT=30001 && node src/app.js",
"start:test": "SET NODE_ENV=test && SET ENV_SERVER_API_ALLOW_HOSTS=* && SET ENV_SERVER_API_MONGODB_URI=mongodb://localhost:27017 && SET ENV_SERVER_API_PORT=30001 && node src/app.js",
"start:docker": "node src/app.js",
"test": "cross-env NODE_ENV=test nodemon --exec \"mocha --timeout 20000 \"src/test/**/*\" \"",
"test:noverbose": "cross-env NODE_ENV=test nodemon --exec \"mocha --timeout 20000 \"src/test/**/*\" \" -R min"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@angular/cli": "^7.3.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.16.0",
"expect": "^21.2.1",
"mocha": "^4.1.0",
"nodemon": "^1.19.1",
"supertest": "^2.0.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"fs": "0.0.1-security",
"google-finance": "^0.1.12",
"helmet": "^3.15.0",
"mongodb": "^2.2.36",
"mongoose": "^4.13.18",
"morgan": "^1.9.1",
"node-env-file": "^0.1.8",
"node-news": "0.0.7",
"redis": "^2.8.0",
"request": "^2.88.0",
"rotating-file-stream": "^1.4.0"
}
}