This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
57
{
"name": "@digicatapult/vitalam-service-template",
"version": "0.0.9",
"description": "Service for VITALam",
"main": "app/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --config ./test/mocharc.js ./test",
"lint": "eslint .",
"depcheck": "depcheck",
"start": "NODE_ENV=production node app/index.js",
"dev": "NODE_ENV=development nodemon app/index.js | pino-colada",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/vitalam-service-template.git"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"keywords": [
"VITALam"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/vitalam-service-template/issues"
},
"homepage": "https://github.com/digicatapult/vitalam-service-template#readme",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"envalid": "^7.0.0",
"express": "^4.17.1",
"express-openapi": "^10.0.0",
"pino": "^6.11.1",
"pino-http": "^5.5.0",
"swagger-ui-express": "^4.2.0"
},
"devDependencies": {
"chai": "^4.3.1",
"chai-json": "^1.0.0",
"depcheck": "^1.4.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^9.1.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pino-colada": "^2.1.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}