-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 940 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
{
"name": "trady",
"version": "0.2.0",
"private": true,
"description": "Crypto market scanner.",
"license": "UNLICENSED",
"author": "Luciano Ropero <[email protected]>",
"type": "module",
"scripts": {
"audit": "npx upgradeps -v",
"clean": "npx rimraf node_modules && npx rimraf package-lock.json",
"lint": "npx prettier --write . && npx standard --fix",
"nuke": "npm run clean && npm cache verify && npm install",
"sort": "npx sort-package-json",
"start": "node trady.js -b -d 2 -i -s"
},
"dependencies": {
"array-shuffle": "3.0.0",
"beeper": "3.0.0",
"chalk": "5.2.0",
"commander": "10.0.0",
"date-fns": "2.29.3",
"dotenv": "16.0.3",
"figures": "5.0.0",
"jsonfile": "6.1.0",
"node-binance-api": "0.13.1",
"rxjs": "7.8.0",
"tulind": "0.8.20"
},
"devDependencies": {
"prettier": "2.8.6",
"standard": "17.0.0",
"upgradeps": "2.0.5"
}
}