-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 962 Bytes
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
{
"name": "secure-api-proxy",
"version": "1.0.0",
"description": "Secure proxy server integrating with banking API endpoints",
"main": "dist/app.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "rimraf dist && tsc",
"start": "node dist/app.js",
"clean": "rimraf dist"
},
"keywords": [
"banking",
"proxy",
"api",
"express",
"typescript"
],
"author": "Antigravity",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"swagger-ui-express": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/swagger-ui-express": "^4.1.6",
"rimraf": "^5.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}