forked from junta/tradingview-alert-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
47
48
49
50
51
52
53
{
"name": "tradingview-alert-connector",
"version": "1.0.0",
"description": "Free and self-hosted tool for you to Integrate TradingView strategy alert and execute automated trading for dYdX.",
"homepage": "https://tv-connector.gitbook.io/docs/",
"main": "index.js",
"scripts": {
"start": "tsc && NODE_ENV=production node dist/index.js",
"start:test": "tsc && NODE_ENV=test ts-node dist/index.js",
"start:dev": "tsc && NODE_ENV=development tsc-watch --onSuccess \"ts-node dist/index.js\"",
"decode": "ts-node scripts/decode.ts",
"test": "jest",
"test:prod": "NODE_ENV=production jest",
"ngrok": "ngrok http 3000",
"ngrok:docker": "ngrok http 80"
},
"author": "0xIbuki",
"license": "MIT",
"dependencies": {
"@bluefin-exchange/bluefin-v2-client": "^5.2.35",
"@dydxprotocol/v3-client": "^1.14.0",
"@dydxprotocol/v4-client-js": "^1.0.27",
"@perp/sdk-curie": "^1.22.0",
"@sentry/integrations": "^6.19.1",
"@sentry/node": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"@types/config": "^0.0.41",
"@types/express": "^4.17.13",
"@types/node": "^20.10.0",
"axios": "^1.6.7",
"config": "^3.3.7",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"js-yaml": "^4.1.0",
"node-json-db": "^1.4.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"ts-node": "^10.5.0",
"ngrok": "^4.3.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"jest": "^29.7.0",
"prettier": "2.5.1",
"ts-jest": "^29.1.1",
"tsc-watch": "^4.6.0"
}
}