-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "tag-registry-rewards",
"version": "0.2.0",
"description": "Monthly, rewards addresses that make contributions to address tags registry.",
"main": "src/index.ts",
"repository": "git+https://github.com/kleros/tag-registry-rewards",
"author": "Kleros",
"license": "MIT",
"private": false,
"prettier": {
"semi": false
},
"scripts": {
"start": "ts-node --transpile-only --files -r dotenv-safe/config src/cli.ts",
"start:kovan": "env-cmd -f ./.env.kovan 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",
"lint:secrets": "secretlint \"**/*\"",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix && tsc --noEmit && npm run lint:secrets",
"release": "standard-version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@secretlint/secretlint-rule-preset-recommend": "^2.1.0",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"secretlint": "^2.1.0",
"standard-version": "^8.0.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/node": "^14.0.23",
"@types/node-fetch": "^2.5.7",
"@types/yargs": "^17.0.10",
"cheerio": "^1.0.0-rc.10",
"csv-writer": "^1.6.0",
"dotenv-safe": "^8.2.0",
"env-cmd": "^10.1.0",
"ethers": "^5.6.5",
"node-fetch": "^2.6.6",
"web3": "^1.7.3",
"web3-utils": "^1.7.3",
"yargs": "^17.4.1"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
}
}