-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "notification-service",
"version": "0.1.0",
"engines": {
"node": ">=11.0.0"
},
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"migration": "knex migrate:latest --env development",
"start": "node index.js"
},
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@aragon/os": "^4.2.1",
"@hapi/boom": "^7.4.3",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
"@hapi/good-squeeze": "^5.2.0",
"@hapi/hapi": "^18.3.1",
"@hapi/inert": "^5.2.1",
"@hapi/joi": "^15.0.3",
"@hapi/vision": "^5.5.2",
"@promster/hapi": "^2.2.5",
"@promster/server": "^2.1.1",
"esm": "^3.2.25",
"eth-ens-namehash": "^2.0.8",
"ethereum-ens": "0.7.6",
"hapi-auth-jwt2": "^8.6.1",
"hapi-swagger": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"lodash.memoize": "^4.1.2",
"pg": "^7.11.0",
"postmark": "^2.2.6",
"web3": "^1.2.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"dotenv": "^8.1.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.18.2"
}
}