generated from arunkumar201/rest-api-using-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "rest-api-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc -p .",
"start:prod": "yarn build && node dist/index.js",
"start:binanceService": "node src/app/appBinanceBroker.js",
"start:bitgetService": "node src/app/appBitgetBroker.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:both": "npm-run-all --parallel start:prod start:binanceService start:bitgetService"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@binance/connector": "^3.2.0",
"binance-api-node": "^0.12.7",
"bitget-api": "^2.0.4",
"body-parser": "^1.20.2",
"bullmq": "^5.1.8",
"config": "^3.3.11",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.0.1"
}
}