-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "corobot",
"version": "1.2.0",
"description": "A bot to watch and respond to kleros governor events.",
"main": "src/index.js",
"scripts": {
"start": "ts-node-dev src/index.ts",
"start:debug": "ts-node-dev --inspect -- src/index.ts",
"build": "rimraf dist && tsc",
"production": "yarn build && node dist/index.js",
"lint:js": "eslint '**/*.js' --ignore-pattern 'public/ethers.min.js'",
"lint:secrets": "secretlint \"**/*\"",
"lint": "yarn lint:js && yarn lint:secrets",
"format": "eslint '**/*.js' --ignore-pattern 'public/ethers.min.js' --fix",
"clean": "rimraf ./db/* && nodetouch ./db/.gitkeep",
"release": "standard-version"
},
"author": "Kleros",
"license": "MIT",
"private": true,
"keywords": [
"kleros",
"governor",
"bot"
],
"dependencies": {
"@kleros/erc-792": "^4.0.0",
"@kleros/kleros": "^0.1.5",
"@sendgrid/mail": "^6.5.4",
"@types/ajv": "^1.0.0",
"ajv": "^6.12.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^4.0.45",
"express": "^4.17.1",
"level": "^6.0.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@secretlint/secretlint-rule-preset-recommend": "^2.0.0",
"@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",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^17.2.0",
"husky": "^4.2.3",
"prettier": "^1.19.1",
"prettier-config-standard": "^1.0.1",
"rimraf": "^3.0.2",
"secretlint": "^2.0.0",
"standard-version": "^8.0.1",
"touch": "^3.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/node_modules/**"
],
"globals": [
"require"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": "git@github.com:kleros/corobot.git"
}