-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 728 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 728 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
{
"name": "node-api-proxy-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apicache": "^1.6.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"needle": "^3.2.0"
},
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/needle": "^3.3.0",
"@types/node": "^20.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}