Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "frontblock-admin",
  3. "description": "Dynamic configurator for frontblock",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "tsc": "tsc",
  7. "start": "npm run build; node lib/src/backend/Launcher.js",
  8. "start-backend": "npm run build-backend; node lib/src/backend/Launcher.js",
  9. "build": "npm run clean; npm run build-backend; npm run build-frontend",
  10. "test": "npm run clean && npm run build-backend && mocha lib/test/backendTest.js",
  11. "build-backend": "tsc;",
  12. "build-frontend": "mkdir dist; mkdir dist/static; npm run build-dashboard;",
  13. "build-dashboard": "cd src/frontend; npm i && npm run build; cp -r dist/* ../../dist/static",
  14. "clean": "rm -rf lib static plugins conf dist widget .rpt2_cache *.js *.ts src/frontend/dist data",
  15. "update-frontblock": "npm remove frontblock frontblock-generic; npm install frontblock-generic@latest frontblock@latest",
  16. "webpack": "webpack --config src/backend/webpack.prod.js --progress --colors"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "http://gitea.frontblock.me/fb-vendor/admin"
  21. },
  22. "author": "frontblock.me",
  23. "license": "ISC",
  24. "dependencies": {
  25. "@types/mocha": "^5.2.7",
  26. "bsert": "0.0.10",
  27. "bsock": "^0.1.9",
  28. "child-process-promise": "^2.2.1",
  29. "debug": "^4.1.1",
  30. "express": "^4.16.4",
  31. "frontblock": "^0.15.2",
  32. "frontblock-generic": "^0.34.8",
  33. "git-cherrypicker": "0.0.3",
  34. "git-describe": "^4.0.4",
  35. "http": "0.0.0",
  36. "knex": "^0.19.2",
  37. "loadson": "^1.0.0",
  38. "log4js": "^4.5.1",
  39. "lowdb": "^1.0.0",
  40. "node-fetch": "^2.6.0",
  41. "path": "^0.12.7",
  42. "reflect-metadata": "^0.1.13",
  43. "rimraf": "^3.0.0",
  44. "rpclibrary": "^1.6.2",
  45. "simple-git": "^1.124.0",
  46. "spawn-sync": "^2.0.0",
  47. "sqlite3": "^4.1.0",
  48. "trash": "^6.0.0",
  49. "tsyringe": "^4.0.1",
  50. "upgiter": "^1.0.4",
  51. "uuid": "^3.3.3",
  52. "xml2js": "^0.4.22"
  53. },
  54. "devDependencies": {
  55. "@types/express": "^4.17.0",
  56. "@types/node": "^11.13.19",
  57. "@types/semver": "^6.0.1",
  58. "madge": "^3.6.0",
  59. "mocha": "^7.0.0",
  60. "terser-webpack-plugin": "^1.4.1",
  61. "ts-loader": "^5.3.3",
  62. "typescript": "^3.5.3",
  63. "webpack": "^4.39.2",
  64. "webpack-cli": "^3.3.5"
  65. },
  66. "files": [
  67. "lib/**/*"
  68. ],
  69. "main": "index.js",
  70. "directories": {
  71. "lib": "lib",
  72. "test": "test"
  73. },
  74. "keywords": []
  75. }