-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "court-notifications-bot",
"description": "Bot to push notifications for Kleros Court.",
"keywords": [
"ethereum",
"web3",
"kleros",
"court"
],
"main": "./src/index.js",
"version": "1.0.0",
"author": "Kleros",
"license": "MIT",
"scripts": {
"start": "env-cmd -f ./.env node src/index.js",
"start:mainnet": "env-cmd -f ./.env.mainnet node src/index.js",
"start:xdai": "env-cmd -f ./.env.xdai node src/index.js",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"lint-staged": "^10.0.0",
"node-gyp": "9.4.0",
"prettier": "^2.3.1",
"prettier-config-standard": "^4.0.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"@kleros/archon": "0.11.1",
"axios": "^0.21.1",
"cuid": "^3.0.0",
"delay": "^4.1.0",
"dotenv-safe": "^8.2.0",
"env-cmd": "^10.1.0",
"mongodb": "^3.5.9",
"pino": "^6.11.3",
"pm2": "^5.1.0",
"web3": "1.2.6",
"web3-provider-engine": "^14.2.0"
},
"volta": {
"node": "16.20.2",
"yarn": "1.22.19"
},
"resolutions": {
"v8-sandbox": "2.2.2"
}
}