forked from sonufrienko/microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "microservice",
"version": "0.0.1",
"description": "Ready to use Node.js microservice",
"main": "app.js",
"scripts": {
"start": "node -r dotenv/config app.js",
"debug": "node --inspect -r dotenv/config app.js",
"prettier": "prettier --write \"**/*.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --setupFiles dotenv/config --forceExit",
"test:watch": "jest --watch --setupFiles dotenv/config",
"test:cover": "jest --coverage --setupFiles dotenv/config",
"test:load": "npx autocannon -c 100 -d 5 -p 10 localhost:4000/v1/users",
"test:integration": "npm test"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"author": {
"name": "Sergey Onufrienko <[email protected]>",
"url": "https://github.com/sonufrienko"
},
"repository": {
"type": "git",
"url": "https://github.com/sonufrienko/microservice"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"celebrate": "^10.0.1",
"compression": "^1.7.4",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.2",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.19.0",
"sequelize-cli": "^5.5.1",
"winston": "^3.2.1"
},
"devDependencies": {
"autocannon": "^4.1.1",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.3.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}