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.4KB

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