first working version of dynamic load
This commit is contained in:
+16
-13
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"name": "frontblock-admin",
|
||||
"description": "Dynamic configurator for frontblock",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"tsc": "tsc",
|
||||
@@ -7,7 +8,7 @@
|
||||
"build": "npm run clean; npm run build-backend; npm run build-frontend",
|
||||
"build-backend": "tsc; webpack --display-error-details --config src/backend/webpack.prod.js --progress --colors; cp -r lib/PluginManager/* .",
|
||||
"build-frontend": "npm run build-dashboard; npm run build-widget",
|
||||
"build-dashboard": "cd src/frontend/dashboard; npm i; npm run build; cp -r dist/* ../../../static",
|
||||
"build-dashboard": "cd src/frontend/dashboard; npm run build; cp -r dist/dashboard/* ../../../static",
|
||||
"build-widget": "rollup -c src/frontend/widget/rollup.config.js; mkdir -p plugins/PluginManager; cp FrontendPlugin.js plugins/PluginManager",
|
||||
"clean": "rm -rf lib static plugins kfs dist widget .rpt2_cache *.js *.ts; rm -rf src/frontend/dashboard/dist",
|
||||
"update-frontblock": "rm -rf node_modules/frontblock*; npm install"
|
||||
@@ -19,9 +20,10 @@
|
||||
"author": "frontblock.me",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@angular/common": "^5.2.11",
|
||||
"@angular/core": "^5.2.2",
|
||||
"@types/node": "^11.13.10",
|
||||
"@angular/common": "^8.2.1",
|
||||
"@angular/core": "^8.2.1",
|
||||
"@angular/platform-browser": "^8.2.1",
|
||||
"@angular/router": "^8.2.1",
|
||||
"@uirouter/angularjs": "^1.0.5",
|
||||
"adm-zip": "^0.4.13",
|
||||
"angular": "^1.7.8",
|
||||
@@ -31,10 +33,10 @@
|
||||
"bsock": "^0.1.9",
|
||||
"easy-unzip": "^1.1.0",
|
||||
"express": "^4.16.4",
|
||||
"frontblock-generic": "latest",
|
||||
"frontblock-generic": "^0.12.0",
|
||||
"hdkey": "^1.1.1",
|
||||
"http": "0.0.0",
|
||||
"key-file-storage": "^2.2.1",
|
||||
"key-file-storage": "^2.2.4",
|
||||
"log4js": "^4.4.0",
|
||||
"memfs": "^2.15.5",
|
||||
"minimist": "^1.2.0",
|
||||
@@ -45,18 +47,16 @@
|
||||
"socket.io": "^2.2.0",
|
||||
"stream-buffers": "^3.0.2",
|
||||
"unzip": "^0.1.11",
|
||||
"uuid": "^3.3.2"
|
||||
"uuid": "^3.3.2",
|
||||
"zone.js": "^0.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rollup-plugin-node-resolve": "^3.0.2",
|
||||
"rollup-plugin-typescript": "^0.8.1",
|
||||
"rollup-plugin-typescript2": "^0.10.0",
|
||||
"@types/angular": "^1.6.27",
|
||||
"@types/express": "^4.17.0",
|
||||
"@types/node": "^11.13.18",
|
||||
"@types/jest": "^24.0.15",
|
||||
"@types/node": "^11.13.19",
|
||||
"@types/semver": "^6.0.1",
|
||||
"@types/webpack-env": "^1.14.0",
|
||||
"@types/angular": "^1.6.27",
|
||||
"@types/jest": "^24.0.15",
|
||||
"autoprefixer": "^9.4.7",
|
||||
"clean-webpack-plugin": "^1.0.1",
|
||||
"css-loader": "^2.1.0",
|
||||
@@ -71,6 +71,9 @@
|
||||
"node-sass": "^4.5.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"prettier": "^1.18.2",
|
||||
"rollup-plugin-node-resolve": "^3.0.2",
|
||||
"rollup-plugin-typescript": "^0.8.1",
|
||||
"rollup-plugin-typescript2": "^0.10.0",
|
||||
"sass-loader": "^7.1.0",
|
||||
"style-loader": "^0.23.1",
|
||||
"terser-webpack-plugin": "^1.3.0",
|
||||
|
||||
Reference in New Issue
Block a user