-
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) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 823 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": "bot",
"version": "0.3.7",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"docker:build": "docker build -t theddy .",
"docker:run": "docker run -it --env-file envfile -p 3000:3000 theddy",
"start": "node ./dist/index.js",
"build:start": "npm run build && npm start",
"build:start:scratch": "rm -f data.json && npm run build:start",
"chart": "lite-server",
"watch": "tsc-watch --onSuccess \"nodemon -w dist/ dist/index.js\""
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"delay": "^2.0.0",
"gdax": "^0.5.1",
"node-binance-api": "^0.4.8",
"rxjs": "^5.5.6",
"slack-webhook": "^1.0.0"
},
"devDependencies": {
"@types/node": "^8.5.2",
"@types/rx": "^4.1.1",
"tsc-watch": "^1.0.13"
}
}