-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "@magic8bot/web-server",
"version": "1.0.1",
"description": "Cryptocurrency trading bot",
"bugs": "https://github.com/magic8bot/web-server/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/magic8bot/web-server.git"
},
"main": "./index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"dist": "npm run build",
"rebuild": "npm run clean && npm run dist",
"start": "node ./index.js",
"start:dev": "cross-env NODE_ENV=development nodemon -w ./src -e ts ./index.js",
"prepub": "npm run rebuild",
"pub": "npm publish --access=public"
},
"dependencies": {
"@magic8bot/db": "^2.0.6",
"@magic8bot/smq": "^2.0.0",
"body-parser": "^1.19.0",
"ccxt": "^1.39.61",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "7.0.2",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"redis-smq": "^2.0.11"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.16.1",
"@types/node": "^14.14.14",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
}
}