-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
55
56
{
"name": "ihna-micro-service",
"description": "TypeScript monorepo for all micro-service",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"format": "lerna run prettier && lerna run lint:fix",
"prettier": "lerna run prettier",
"check": "lerna run lint",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"yarn prettier",
"yarn check"
]
},
"devDependencies": {
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"@types/jest": "^26.0.20",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-jest": "^24.1.3",
"faker": "^5.3.1",
"jest": "^26.6.3",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"standard": "^16.0.3",
"supertest": "^6.1.3"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-validation": "^3.0.6",
"helmet": "^4.4.1",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"tmp": "^0.2.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}