-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 939 Bytes
/
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
{
"name": "@magic8bot/trade",
"version": "1.0.2",
"description": "Cryptocurrency trading bot",
"bugs": "https://github.com/magic8bot/trade/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/magic8bot/trade.git"
},
"main": "./dist/index.js",
"bin": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"dist": "npm run build",
"rebuild": "npm run clean && npm run dist",
"prepub": "npm run rebuild",
"pub": "npm publish --access=public"
},
"dependencies": {
"@magic8bot/adapters": "^1.0.0",
"@magic8bot/db": "^2.0.6",
"@magic8bot/smq": "^2.1.0",
"@magic8bot/utils": "1.0.1",
"dotenv": "^8.2.0",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^14.14.14",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
}
}