-
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) · 723 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 723 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": "@dipakparmar/icbc-proxy-api",
"version": "1.0.0",
"description": "ICBC Proxy API",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"test": "jest",
"start": "rm -rf dist && tsc && node dist/server.js"
},
"keywords": [],
"author": "Dipak Parmar",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"morgan": "^1.10.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.4",
"axios": "^1.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1"
}
}