-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.45 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
{
"name": "gtcr-notifications",
"version": "1.1.0",
"description": "Microservice for monitoring gtcr contract events.",
"main": "index.js",
"author": "Kleros",
"license": "MIT",
"private": true,
"repository": "https://github.com/kleros/gtcr-notifications",
"keywords": [
"blockchain",
"ethereum",
"dapp",
"kleros",
"gtcr"
],
"scripts": {
"start": "env-cmd -f ./.env nodemon -r dotenv-safe/config index.js",
"start:mainnet": "env-cmd -f ./.env.mainnet node -r dotenv-safe/config index.js",
"start:kovan": "env-cmd -f ./.env.kovan node -r dotenv-safe/config index.js",
"start:xdai": "env-cmd -f ./.env.xdai node -r dotenv-safe/config index.js",
"lint:eslint:fix": "eslint '**/*.js' --fix",
"lint:prettier:fix": "prettier --write '**/*.js'",
"lint:secretlint": "secretlint '**/*'",
"format": "yarn run lint:eslint:fix && yarn run lint:prettier:fix",
"release": "standard-version"
},
"dependencies": {
"@sendgrid/mail": "^6.5.0",
"ajv": "^6.10.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"delay": "^5.0.0",
"dotenv-safe": "^8.2.0",
"env-cmd": "^10.1.0",
"eth-sig-util": "^2.5.2",
"ethereumjs-util": "^7.0.2",
"ethers": "^4",
"express": "^4.17.1",
"json-schema": "^0.2.5",
"level": "^6.0.0",
"morgan": "^1.9.1",
"node-fetch": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@secretlint/secretlint-rule-preset-recommend": "^2.0.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^9.1.1",
"husky": "^3.1.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"secretlint": "^2.0.0",
"standard-version": "^8.0.1",
"touch": "^3.1.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/node_modules/**"
],
"globals": [
"require"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint:secretlint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.17.3",
"yarn": "1.22.10"
}
}