-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
51
52
{
"name": "ts-api-gateway",
"version": "1.0.0",
"description": "API Gateway in TypeScript",
"main": "index.js",
"scripts": {
"start": "node dist/gateway.js",
"watch-serve": "nodemon dist/gateway.js",
"serve": "node dist/gateway.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "jest --forceExit --verbose --detectOpenHandles --colors --coverage",
"watch-test": "npm run test -- --watchAll",
"heroku-build": "npm run build-ts && npm run start"
},
"keywords": [],
"author": "Adebayo Mustafa <adebsalert@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/AdebsAlert/api-gateway"
},
"devDependencies": {
"@types/append-query": "^2.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hapi__joi": "^17.1.8",
"@types/jsonwebtoken": "^8.5.6",
"nodemon": "^2.0.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"append-query": "^2.1.1",
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"express-openid-connect": "^2.7.0",
"express-rate-limit": "^6.0.3",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"typescript": "^4.5.4",
"winston": "^3.3.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}