-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.51 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
73
74
75
76
77
78
79
80
{
"name": "gtcr-action-bot",
"version": "1.1.0",
"description": "A bot to watch GTCR contract and call functions on behalf of users",
"main": "src/index.js",
"scripts": {
"start": "env-cmd -f ./.env ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:mainnet": "env-cmd -f ./.env.mainnet ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:xdai": "env-cmd -f ./.env.xdai ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:rinkeby": "env-cmd -f ./.env.rinkeby ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:goerli": "env-cmd -f ./.env.goerli ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:kovan": "env-cmd -f ./.env.kovan ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"start:arb_rinkeby": "env-cmd -f ./.env.arb_rinkeby ts-node --transpile-only --files -r dotenv-safe/config ./src/index.ts",
"lint:secrets": "secretlint \"**/*\"",
"lint": "npm run lint:secrets",
"deleteDBs": "rimraf ./db-*",
"release": "standard-version"
},
"author": "Kleros",
"repository": "git@github.com:kleros/gtcr-action-bot.git",
"license": "MIT",
"private": true,
"keywords": [
"kleros",
"gtcr",
"bot"
],
"dependencies": {
"colors": "^1.4.0",
"delay": "^5.0.0",
"ethers": "^5.5.1",
"level": "^6.0.1",
"node-fetch": "^2.6.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@secretlint/secretlint-rule-preset-recommend": "^1.0.1",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^1.0.1",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.1",
"@types/node-fetch": "^3.0.3",
"dotenv-safe": "^8.2.0",
"env-cmd": "^10.1.0",
"husky": "^4.2.3",
"rimraf": "^3.0.2",
"secretlint": "^1.0.1",
"standard-version": "^8.0.1",
"touch": "^3.1.0",
"ts-node": "^10.0.0",
"typescript": "^3.8.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/node_modules/**"
],
"globals": [
"require"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.17.3",
"yarn": "1.22.10"
}
}