-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "orchestrator",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc -p . && tsc-alias -p tsconfig.json",
"lint": "eslint --fix",
"format": "prettier -w .",
"prepare": "husky"
},
"keywords": [],
"author": "Aanttrax",
"license": "ISC",
"description": "Orchestrator of Microservices",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.4.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"axios": "^1.7.8",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0"
}
}