forked from john-titor-master/bombcrypto-superbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "bombcrypto-superbot",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.1",
"@types/user-agents": "^1.0.2",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"prettier": "2.5.1",
"typescript": "^4.5.4"
},
"scripts": {
"go": "yarn lint && yarn format && yarn build && yarn start",
"start": "node -r ./build/websocket.js --unhandled-rejections=strict build/index.js",
"build": "tsc",
"format:check": "yarn prettier --check src/",
"format": "yarn prettier --write src/",
"lint": "eslint src/ --ext .ts",
"re:run": "yarn run build && node -r ./build/websocket.js --unhandled-rejections=strict build/reverse.js",
"re": "yarn build && yarn re:run"
},
"dependencies": {
"@types/user-agents": "^1.0.2",
"express": "^4.17.3",
"got": "~11.8.3",
"sfs2x-api": "1.7.15",
"telegraf": "^4.6.0",
"user-agents": "^1.0.988",
"web3": "^1.7.3",
"winston": "^3.4.0",
"ws": "^8.3.0"
}
}