-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "uems-event-micro-dionysus",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rm -r build/ || true",
"build": "tsc --listEmittedFiles",
"start": "node -r source-map-support/register --trace-warnings ./build/src/app.js",
"start:dev": "NODE_ENV=dev ts-node --files ./src/app.ts",
"test": "jest --runInBand",
"dockerless": "UEMS_HEALTHCHECK=7778 NODE_ENV=dev npm run start:dev"
},
"dependencies": {
"@types/amqplib": "^0.5.13",
"@types/mocha": "^7.0.2",
"@uems/micro-builder": "1.1.0",
"@uems/uemscommlib": "0.1.0-beta.57",
"ajv": "^6.12.3",
"amqplib": "^0.5.6",
"cookie-parser": "~1.4.4",
"express": "~4.16.1",
"morgan": "~1.9.1",
"source-map-support": "^0.5.19",
"winston": "^3.3.3",
"zod": "^1.11.11"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.20",
"@types/mongodb": "^3.6.3",
"@types/morgan": "^1.9.1",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.1",
"jest": "^26.6.3",
"mongo-unit": "^2.0.1",
"mongodb": "^3.6.3",
"tmp": "^0.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.5"
}
}