-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 995 Bytes
/
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
{
"name": "t2cr-twitter-bot",
"description": "Tweet updates from T2CR",
"keywords": [
"ethereum",
"web3",
"kleros",
"t2cr"
],
"main": "./src/index.js",
"version": "1.0.0",
"author": "Kleros",
"license": "MIT",
"private": false,
"scripts": {
"prettify": "kathari prettify",
"lint": "kathari lint:js --no-root",
"test": "echo \"\"",
"cz": "kathari cz",
"start": "env-cmd ./.env.staging node ./src/index.js",
"start:production": "env-cmd ./.env.production node ./src/index.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"standard-version": "^4.4.0"
},
"dependencies": {
"axios": "^0.18.0",
"bitly": "^6.0.8",
"delay": "^4.1.0",
"env-cmd": "^8.0.2",
"function-batch": "^1.1.2",
"mongodb": "^3.1.13",
"twit": "^2.2.11",
"web3": "^1.2.6",
"web3-provider-engine": "^14.2.0"
},
"prettier": {
"printWidth": 180,
}
}