| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "frontblock-admin",
- "description": "Dynamic configurator for frontblock",
- "version": "1.0.0",
- "scripts": {
- "tsc": "tsc",
- "launch": "node lib/src/backend/Launcher.js",
- "start": "npm run build; npm run launch",
- "start-backend": "npm run build-backend; node lib/src/backend/Launcher.js",
- "build": "npm run build-backend; npm run build-frontend",
- "test": "npm run clean && npm run build-backend && mocha lib/test/backendTest.js",
- "build-backend": "tsc;",
- "build-frontend": "mkdir dist; mkdir dist/static; npm run build-dashboard;",
- "build-dashboard": "cd src/frontend; npm i && npm run build; cp -r dist/* ../../dist/static",
- "clean": "rm -rf lib plugins conf widget .rpt2_cache *.js *.ts src/frontend/dist data",
- "update-frontblock": "npm remove frontblock frontblock-generic; npm install frontblock-generic@latest frontblock@latest",
- "webpack": "webpack --config src/backend/webpack.prod.js --progress --colors"
- },
- "repository": {
- "type": "git",
- "url": "http://gitea.frontblock.me/fb-vendor/admin"
- },
- "author": "frontblock.me",
- "license": "ISC",
- "dependencies": {
- "@types/mocha": "^5.2.7",
- "bsert": "0.0.10",
- "bsock": "^0.1.9",
- "child-process-promise": "^2.2.1",
- "circular-buffer": "^1.0.2",
- "crypto-js": "^3.1.9-1",
- "debug": "^4.1.1",
- "express": "^4.16.4",
- "frontblock": "^0.15.2",
- "frontblock-generic": "^0.34.8",
- "git-cherrypicker": "0.0.3",
- "git-describe": "^4.0.4",
- "http": "0.0.0",
- "knex": "^0.19.2",
- "loadson": "^1.0.0",
- "log4js": "^4.5.1",
- "lowdb": "^1.0.0",
- "node-fetch": "^2.6.0",
- "path": "^0.12.7",
- "reflect-metadata": "^0.1.13",
- "rimraf": "^3.0.0",
- "rpclibrary": "^1.7.0",
- "simple-git": "^1.124.0",
- "spawn-sync": "^2.0.0",
- "sqlite3": "^4.1.1",
- "trash": "^6.0.0",
- "tsyringe": "^4.0.1",
- "upgiter": "^1.0.4",
- "uuid": "^3.3.3",
- "xml2js": "^0.4.22"
- },
- "devDependencies": {
- "@types/express": "^4.17.0",
- "@types/node": "^11.13.19",
- "@types/semver": "^6.0.1",
- "madge": "^3.6.0",
- "mocha": "^7.0.0",
- "terser-webpack-plugin": "^1.4.1",
- "ts-loader": "^5.3.3",
- "typescript": "^3.5.3",
- "webpack": "^4.39.2",
- "webpack-cli": "^3.3.5"
- },
- "files": [
- "lib/**/*"
- ],
- "main": "index.js",
- "directories": {
- "lib": "lib",
- "test": "test"
- },
- "keywords": []
- }
|