-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@gnosis.pm/dex-telegram",
"version": "0.11.1",
"description": "",
"license": "MIT",
"scripts": {
"start": "DEBUG=ERROR-*,WARN-*,INFO-* NTBA_FIX_319=yes node build/src/bot",
"start:env": "DEBUG=ERROR-*,WARN-*,INFO-* NTBA_FIX_319=yes node -r dotenv/config build/src/bot",
"dev": "DEBUG=ERROR-*,WARN-*,INFO-*,DEBUG-*,-DEBUG-helper*,-DEBUG-util* NTBA_FIX_319=yes nodemon -r dotenv/config -r tsconfig-paths/register src/bot.ts",
"dev:debug": "DEBUG=ERROR-*,WARN-*,INFO-*,DEBUG-* nodemon -r dotenv/config -r tsconfig-paths/register src/bot.ts",
"dev:info": "DEBUG=ERROR-*,WARN-*,INFO-* nodemon -r tsconfig-paths/register -r dotenv/config src/bot.ts",
"sandbox": "DEBUG=ERROR-*,WARN-*,INFO-*,DEBUG-*,-DEBUG-helper*,-DEBUG-util* nodemon -r dotenv/config -r tsconfig-paths/register",
"test": "jest",
"test-coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test --ext .ts,.js",
"lint:fix": "eslint --fix src test --ext .ts,.js",
"verify": "npm run lint && npm run test",
"build": "rimraf build && ttsc",
"rpc": "ganache-cli -d --mnemonic 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'"
},
"husky": {
"hooks": {
"pre-commit": "npm run verify"
}
},
"dependencies": {
"@gnosis.pm/dex-js": "^0.8.1-rc.0",
"bignumber.js": "^9.0.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"node-cache": "^5.1.0",
"node-telegram-bot-api": "^0.40.0",
"rxjs": "7.0.0-beta.0",
"web3": "^1.3.0",
"web3-core": "^1.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jest": "^25.1.3",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^13.1.1",
"@types/node-telegram-bot-api": "^0.40.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.8",
"typescript": "^3.7.2",
"typescript-transform-paths": "^1.1.13"
}
}