-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "docker-monitoring",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "ts-node-dev -r tsconfig-paths/register --poll src/index.ts",
"worker": "ts-node -r tsconfig-paths/register src/main/workers/index.ts",
"worker:dev": "ts-node-dev -r tsconfig-paths/register --poll ./src/main/workers/index.ts",
"build": "tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bull": "^3.15.8",
"@types/cors": "^2.8.12",
"@types/dockerode": "^3.3.9",
"@types/express": "^4.17.13",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.27.2",
"bull": "^4.8.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dockerode": "^3.3.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongodb": "^4.6.0"
}
}