-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
47
48
49
50
51
52
53
54
{
"name": "rest-api-express-mongodb-redis",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=8.9.2",
"npm": ">=5.6.0"
},
"scripts": {
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"dev": "cross-env NODE_ENV=development nodemon --inspect src/index.js",
"test": "cross-env NODE_ENV=test tape test/**/*.test.js | tap-spec",
"start": "cross-env NODE_ENV=producton src/index.js",
"lint": "npm run eslint",
"eslint": "eslint \"./**/*.js\" --quiet --ignore-pattern .gitignore"
},
"dependencies": {
"body-parser": "^1.17.2",
"connect-redis": "^3.3.0",
"cross-env": "^5.0.1",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"express": "^4.15.3",
"express-session": "^1.15.4",
"helmet": "^3.8.1",
"mongoose": "^4.10.5",
"morgan": "^1.8.2",
"prettier": "^1.10.2",
"redis": "^2.7.1",
"rotating-file-stream": "^1.2.2",
"uuid": "^3.1.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"faucet": "^0.0.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"nodemon": "^1.11.0",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}