-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 994 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
{
"name": "registry",
"version": "0.1.1",
"description": "Hive on-chain apps registry",
"homepage": "https://hivesigner.com",
"license": "MIT",
"scripts": {
"start": "node start.js",
"lint": "eslint 'src/**/*.js'",
"prettier": "prettier 'src/**/*.js' --list-different",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@hiveio/dhive": "^0.14.1",
"bluebird": "^3.5.5",
"discord.js": "^11.5.1",
"express": "^4.16.4",
"redis": "^2.8.0"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^23.5.0",
"prettier": "^1.14.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ledgerconnect/registry.git"
},
"bugs": {
"url": "https://github.com/ledgerconnect/registry/issues"
}
}