This repository has been archived by the owner on Jan 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
148 lines (148 loc) · 5.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "lisk-explorer",
"version": "2.3.0-rc.1",
"description": "Lisk blockchain explorer",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-explorer",
"repository": {
"type": "git",
"url": "[email protected]:LiskHQ/lisk-explorer.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-explorer/issues"
},
"private": true,
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"main": "app.js",
"engines": {
"node": "10.18.1",
"npm": "6.13.4"
},
"scripts": {
"start": "node app.js",
"start:local": "LISK_URL_HTTP='http://localhost:4000/api' LISK_URL_WS='ws://localhost:4000' node app.js",
"start:testnet": "LISK_URL_HTTP='https://testnet.lisk.io/api' LISK_URL_WS='wss://testnet.lisk.io' node app.js",
"start:mainnet": "LISK_URL_HTTP='https://node.lisk.io/api' LISK_URL_WS='wss://node.lisk.io' node app.js",
"test": "./node_modules/.bin/grunt test --verbose",
"test:e2e": "protractor protractor.conf.js",
"test-live": "npm test -- --auto-watch --no-single-run",
"install:e2e": "./node_modules/protractor/bin/webdriver-manager update --standalone false --gecko false",
"eslint": "eslint ./benchmarks ./utils ./libs ./api ./src ./test ./features ./tasks ./*.js ./*.json",
"eslint-fix": "eslint --fix ./benchmarks ./utils ./libs ./api ./src ./test ./features ./tasks ./*.js",
"watch": "npm run copy-files && DEBUG=true webpack -w",
"validate": "webpack-validator webpack.config.js",
"copy-files": "cp -r ./src/assets/img/favicons/* ./src/assets/img/leaflet ./robots.txt ./public",
"build": "npm run copy-files && webpack",
"build:prod": "webpack --env.prod",
"clean": "npm run clean:backend && npm run clean:frontend && git clean ./ -dfnx",
"clean:frontend": "git clean ./public -dfx && git clean ./src -dfx",
"clean:backend": "rm -rf node_modules"
},
"dependencies": {
"amstock3": "github:amcharts/amstock3",
"angular": "^1.8.0",
"angular-animate": "^1.7.9",
"angular-cookies": "^1.7.9",
"angular-gettext": "^2.3.9",
"angular-naturalsort": "https://github.com/isabello/angular-naturalsort.git",
"angular-qrcode": "^7.2.0",
"angular-resource": "^1.7.9",
"angular-sanitize": "^1.7.9",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-router": "=1.0.0-rc.1",
"async": "^2.0.1",
"benchmark": "^2.1.1",
"body-parser": "^1.13.2",
"bootstrap": "^3.4.1",
"clipboard": "=1.7.1",
"commander": "=2.9.0",
"compression": "^1.6.2",
"express": "^4.16.3",
"fast-safe-stringify": "^1.2.0",
"flatstr": "^1.0.5",
"http-status-codes": "^1.3.0",
"jquery": "^3.5.0",
"leaflet": "^1.3.0",
"leaflet.markercluster": "^1.0.5",
"method-override": "^2.3.4",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"ng-annotate": "^1.2.1",
"ng-annotate-webpack-plugin": "^0.2.1-pre",
"ngprogress": "https://github.com/VictorBjelkholm/ngProgress.git",
"parse-markdown-js": "^1.3.6",
"popsicle": "=8.2.0",
"qrcode": "^0.8.1",
"qrcode-generator": "^1.2.0",
"redis": "^3.1.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"sigma": "https://github.com/goVanilla/sigma.js.git",
"socket.io": "^2.1.1",
"socket.io-client": "^2.2.0",
"split": "^1.0.0",
"string-similarity": "^1.2.0",
"try-require": "^1.2.1",
"twitter": "^1.7.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"babel-core": "^6.24.0",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-preset-env": "~1.7.0",
"babel-preset-stage-3": "^6.24.1",
"chai": "=3.5.0",
"chai-as-promised": "=7.0.0",
"chai-enzyme": "^0.8.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.11",
"cucumber": "=2.3.1",
"enzyme": "^2.9.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-google": "^0.9.1",
"eslint-config-lisk-base": "^0.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-protractor": "^1.40.0",
"eslint-plugin-react": "^7.3.0",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.2",
"grunt": "^1.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-markdown": "^0.7.0",
"grunt-mocha-test": "=0.13.2",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^4.6.0",
"imports-loader": "^0.7.1",
"mocha": "^5.2.0",
"mocha-multi-reporters": "^1.1.7",
"optipng-bin": "^4.0.0",
"pngquant-bin": "^4.0.0",
"protractor": "^5.4.2",
"protractor-cucumber-framework": "=3.1.2",
"should": "^11.2.1",
"sinon": "^5.0.10",
"sinon-chai": "^2.13.0",
"sinon-stub-promise": "^4.0.0",
"style-loader": "^0.16.1",
"supertest": "^3.1.0",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.4.0",
"webpack-merge": "^4.1.2"
}
}