-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "application-events",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.ts --timeout 10000",
"build": "tsc",
"build:prod": "tsc --project tsconfig.production.json",
"debug": "nodemon dist/index.js",
"dev:docker": "nodemon .",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/index.ts",
"lint": "tslint --config ../tslint.json --project .",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
},
"dependencies": {
"@guardian/common": "^2.13.0",
"@guardian/interfaces": "^2.13.0",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"axios": "^1.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"http-errors": "^2.0.0",
"js-yaml": "^4.1.0",
"mongodb": "6.7.0",
"mongoose": "^6.10.0",
"morgan": "^1.10.0",
"nats": "^2.12.1",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.3.0",
"typescript": "^4.9.5",
"yup": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0"
},
"type": "module"
}