-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.6 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": "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 ts-node dist/index.js",
"start:test": "tsc && NODE_ENV=development ts-node dist/index.js",
"start:dev": "tsc && NODE_ENV=development tsc-watch --onSuccess \"ts-node dist/index.js\"",
"ngrok": "ngrok http 3000",
"ngrok:docker": "ngrok http 80"
},
"author": "0xIbuki",
"license": "MIT",
"dependencies": {
"@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",
"apexpro-connector-node": "^0.0.6",
"big.js": "^6.2.1",
"config": "^3.3.7",
"dotenv": "^16.0.0",
"ethers": "^5.7.2",
"express": "^4.17.3",
"helmet": "^5.0.2",
"js-yaml": "^4.1.0",
"ngrok": "^4.3.0",
"node-json-db": "^1.4.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"bignumber.js": "^9.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"prettier": "2.5.1",
"tsc-watch": "^4.6.0"
}
}