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 12
/
package.json
84 lines (84 loc) · 2.77 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
{
"name": "lightning-viz",
"version": "1.4.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha \"src/**/*.spec.js\"",
"test:file": "mocha",
"start": "NODE_ENV=production node --max-old-space-size=8192 src/server/server",
"build": "npm-run-all build:*",
"build:app": "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",
"docker:build": "docker build -t ghcr.io/altangent/lightning-viz:$npm_package_version .",
"docker:push": "docker push ghcr.io/altangent/lightning-viz:$npm_package_version"
},
"keywords": [
"bitcoin",
"litecoin",
"lightning network",
"vizualizer",
"force graph",
"bcashisascam"
],
"author": "Brian Mancini <[email protected]>",
"license": "MIT",
"dependencies": {
"@node-lightning/chainmon": "0.26.0",
"@node-lightning/core": "0.26.0",
"@node-lightning/gossip-rocksdb": "0.26.0",
"@node-lightning/graph": "0.26.0",
"@node-lightning/logger": "0.26.0",
"@node-lightning/wire": "0.26.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"browserify": "^16.2.3",
"compression": "^1.7.3",
"d3": "^4.13.0",
"express": "^4.16.4",
"flag-icon-css": "^3.3.0",
"level": "^6.0.1",
"lnd-async": "^4.1.1",
"moment": "^2.24.0",
"node-schedule": "^1.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"reactstrap": "^5.0.0",
"serve-static": "^1.13.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",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.25.1",
"mocha": "^8.3.0",
"node-sass": "^6.0.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"uglify-js": "^3.14.2",
"watchify": "^4.0.0"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}