-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "api-gateway-service",
"version": "0.1.0",
"description": "api gateway or load balancer using node.js (temporary) for inspix microservices",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/server.ts",
"prod": "tsc && node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inspix-Technologies/api-gateway-service.git"
},
"keywords": [
"api-gateway",
"load-balancer",
"inspix-microservices"
],
"author": "Inspix Technologies, Putu Audi Pasuatmadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Inspix-Technologies/api-gateway-service/issues"
},
"homepage": "https://github.com/Inspix-Technologies/api-gateway-service#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"sequelize-typescript": "^2.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^15.12.2",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}