-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·36 lines (36 loc) · 1.16 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
{
"name": "quorum-explorer",
"version": "0.0.1",
"description": "Display information about the Stellar Core network",
"repository": "[email protected]:tinco/quorum_explorer.git",
"author": "Tinco Andringa",
"license": "MIT",
"scripts": {
"build": "rm -r dist ; mkdir -p dist && cp *.html dist && cp -r styles dist/ && cp -r data dist/ && cp -r src/* dist && cp -r node_modules dist/ && rollup -c",
"dev": "browser-sync start --config browsersync.config.js",
"test": "echo 'No tests :('"
},
"dependencies": {
"@gluon/gluon": "^2.4.1",
"@gluon/router": "^1.1.1",
"@webcomponents/webcomponentsjs": "^2.0.2",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.7.2",
"connect-history-api-fallback": "^1.5.0",
"d3": "^5.6.0",
"lit-html": "^0.10.2",
"npm": "^6.4.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.6",
"np": "^3.0.4",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^3.0.0"
}
}