This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
83 lines (83 loc) · 2.58 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
{
"name": "lnd-explorer",
"version": "1.5.0",
"description": "Explorer for Lightning Network nodes powered by LND",
"scripts": {
"start": "cross-env NODE_ENV=production node src/server/server",
"build": "npm-run-all build:*",
"build:app": "cross-env NODE_ENV=production browserify src/client/app.jsx --extension=.jsx -o ./dist/app/bundle.js",
"build:app-compress": "uglifyjs -c -o ./dist/app/bundle.js ./dist/app/bundle.js",
"build:scss": "node-sass -o dist/css --output-style compressed src/scss/app.scss",
"watch": "npm-run-all --parallel watch:*",
"watch:app": "browserify src/client/app.jsx --extension=.jsx -o ./dist/app/bundle.js && watchify src/client/app.jsx --debug -v --extension=.jsx -o ./dist/app/bundle.js",
"watch:scss": "node-sass -o dist/css src/scss/app.scss && node-sass -w -o dist/css src/scss/app.scss",
"watch:server": "nodemon --ignore dist --ignore src/client src/server/server"
},
"keywords": [
"lnd",
"lnd explorer",
"lightning network",
"lightning network explorer",
"bitcoin",
"litecoin",
"bcashisascam"
],
"author": "Brian Mancini <bmancini@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/altangent/lnd-explorer.git"
},
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"compression": "^1.7.3",
"copy-to-clipboard": "^3.0.8",
"cross-env": "^5.2.0",
"d3": "^4.13.0",
"express": "^4.16.4",
"grpc": "^1.24.9",
"lnd-async": "^1.8.0",
"moment": "^2.24.0",
"node-cache": "^4.2.0",
"prop-types": "^15.6.2",
"pug": "^3.0.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-entypo": "^1.3.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"reactstrap": "^5.0.0",
"serve-favicon": "^2.5.0",
"serve-static": "^1.13.2",
"socket.io": "^2.4.0",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2",
"winston": "^2.4.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.12.4",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"uglify-js": "^3.4.9",
"watchify": "^3.11.1"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}