-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
{
"name": "gtcr-twitter-bot",
"version": "1.1.3",
"main": "index.js",
"author": "Kleros",
"license": "MIT",
"private": true,
"scripts": {
"start": "nodemon -r dotenv-safe/config index.js",
"clean": "rimraf ./db/* && nodetouch ./db/.gitkeep",
"lint:eslint:fix": "eslint '**/*.js' --fix",
"lint:prettier:fix": "prettier --write '**/*.js'",
"format": "yarn run lint:eslint:fix && yarn run lint:prettier:fix",
"release": "standard-version"
},
"dependencies": {
"@kleros/gtcr-encoder": "^1.4.0",
"delay": "^5.0.0",
"dotenv-safe": "^8.2.0",
"ethers": "^5.5.3",
"level": "^6.0.0",
"node-fetch": "^2.6.1",
"twitter-lite": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^21.0.0",
"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": "^16.0.0",
"husky": "^4.2.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"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",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "10.24.1",
"yarn": "1.22.15"
}
}