-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 KB
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
{
"name": "validator-auction-backend-server",
"version": "0.7.4",
"description": "Trustlines Validator Auction Backend Server",
"main": "api.js",
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"start": "node -r esm -r dotenv/config ./api/index.js",
"dev": "NODE_ENV=development BUNYAN_LOGLEVEL=10 nodemon --inspect -r esm -r dotenv/config -i ./logs/ ./api/index.js | bunyan -L",
"lint": "eslint ./api/**/*.js ./lib/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git@github.com:trustlines-protocol/auction.git"
},
"keywords": [
"ethereum",
"api",
"trustlines",
"auction",
"node",
"express"
],
"author": "Trustlines Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/trustlines-protocol/auction/issues"
},
"homepage": "https://github.com/trustlines-protocol/auction/blob/master/README.md",
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"babel-loader": "8.0.4",
"concurrently": "^5.2.0",
"errorhandler": "1.5.0",
"eslint": "5.6.1",
"husky": "1.3.1",
"nodemon": "^2.0.4",
"response-time": "2.3.2"
},
"dependencies": {
"async": "2.6.2",
"axios": "0.18.1",
"bn.js": "^4.11.8",
"body-parser": "1.18.3",
"bunyan": "1.8.12",
"compression": "1.7.3",
"cors": "^2.8.5",
"dotenv": "6.1.0",
"esm": "3.1.0",
"express": "4.16.3",
"express-prettify": "0.1.1",
"express-validator": "5.3.0",
"helmet": "^3.22.0",
"morgan": "1.9.1",
"pretty-ms": "4.0.0",
"query-string": "6.2.0",
"randomhex": "0.1.5",
"uuid": "3.3.2"
}
}