-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "standard-microservice",
"version": "1.0.0",
"description": "A Standard Microservice Template",
"scripts": {
"start": "node index",
"inspect-server": "node --inspect=5858 index",
"dev-server": "ts-node --files ./src/server.ts",
"dev": "nodemon",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"test": "jest ",
"test:watch": "jest --watch",
"test:cover": "jest --collectCoverage",
"test:cover:open": "open ./coverage/lcov-report/index.html",
"clean": "rm -rf dist",
"build": "npm run clean && tsc"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-winston": "^4.0.3",
"multer": "^1.4.2",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.0.0",
"@types/yamljs": "^0.2.31",
"jest": "^27.1.0",
"nodemon": "^2.0.4",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.2",
"typescript": "^4.4.2"
},
"pre-commit": [
"lint",
"test:cover"
]
}