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
64 lines (64 loc) · 1.68 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
58
59
60
61
62
63
64
{
"name": "@digicatapult/wasp-reading-service",
"version": "0.1.1",
"description": "Service for WASP",
"main": "app/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test mocha --config ./test/mocharc.json ./test",
"lint": "eslint .",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "NODE_ENV=dev nodemon app/index.js | pino-colada",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/wasp-reading-service.git"
},
"engines": {
"node": ">=18.13.0"
},
"keywords": [
"WASP"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/wasp-reading-service/issues"
},
"homepage": "https://github.com/digicatapult/wasp-reading-service#readme",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-openapi": "^12.1.0",
"kafkajs": "^2.2.4",
"knex": "^2.4.2",
"moment": "^2.29.4",
"pg": "^8.9.0",
"pino": "^8.11.0",
"pino-http": "^8.3.3",
"swagger-ui-express": "^4.6.2",
"validator": "^13.9.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"delay": "^5.0.0",
"depcheck": "^1.4.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"pino-colada": "^2.2.2",
"prettier": "^2.8.4",
"supertest": "^6.3.3"
}
}