-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "ts-api-gateway",
"version": "1.0.0",
"main": "server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon ./src/server.ts"
},
"keywords": [
"API Gateway using NodeJS",
"API Gateway using ExpressJS",
"API Gateway using Express",
"API Gateway using NodeJS",
"NodeJS API Gateway",
"ExpressJS API Gateway"
],
"author": "Adrian Marcelo",
"license": "ISC",
"description": "A sample project for creating API Gateway utilizing NodeJS and Express.",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"http-proxy-middleware": "^3.0.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"nodemon": "^3.1.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}