-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.85 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
70
71
72
73
74
75
{
"name": "ost-view",
"version": "2.0.0",
"description": "OST VIEW is the home grown block explorer from OST for OpenST Utility Blockchains.",
"main": "app.js",
"scripts": {
"pre-commit": "lint-staged",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ostdotcom/ost-view.git"
},
"keywords": [
"OpenST Blockchains",
"OST",
"Simple Token",
"OST View"
],
"author": "OST.com Inc.",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/ostdotcom/ost-view/issues"
},
"homepage": "https://github.com/ostdotcom/ost-view#readme",
"dependencies": {
"@openst/brandedtoken.js": "0.10.0",
"@openst/mosaic.js": "0.10.0",
"@openst/openst.js": "0.10.0",
"@ostdotcom/base": "^2.0.0",
"@ostdotcom/cache": "1.0.7",
"@ostdotcom/ost-block-scanner": "1.0.1",
"@ostdotcom/ost-price-oracle": "1.0.7",
"@ostdotcom/storage": "1.0.4",
"abi-decoder": "1.0.9",
"basic-auth": "2.0.0",
"bignumber.js": "4.1.0",
"body-parser": "1.18.2",
"child_process": "1.0.2",
"commander": "2.13.0",
"connect-assets": "6.0.1",
"continuation-local-storage": "3.2.1",
"debug": "2.6.9",
"express": "4.17.1",
"express-handlebars": "3.0.0",
"handlebars": "4.5.2",
"helmet": "3.21.1",
"jsonwebtoken": "8.1.0",
"moment": "2.20.1",
"morgan": "1.9.1",
"node-sass": "4.12.0",
"sanitize-html": "1.19.3",
"underscore": "1.8.3",
"uuid": "3.1.0",
"web3": "1.0.0-beta.33"
},
"devDependencies": {
"jsdoc": "3.6.3",
"lint-staged": "9.4.2",
"nodemon": "1.19.4",
"nyc": "14.1.1",
"pre-commit": "1.2.2",
"prettier": "1.18.2",
"eslint": "6.5.1"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}