You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 dist/FrontblockAdmin.js",
  8. "build": "npm run clean; npm run build-backend; npm run build-frontend",
  9. "build-backend": "tsc; npm run webpack",
  10. "build-frontend": "npm run build-dashboard; cp ./dist/FrontblockLib.js ./dist/static",
  11. "build-dashboard": "git submodule init && git submodule update --merge; cd src/frontend; npm i && npm run build; mkdir ../../dist/static; cp -r dist/* ../../dist/static",
  12. "clean": "rm -rf lib static plugins conf dist widget .rpt2_cache *.js *.ts src/frontend/dist data",
  13. "update-frontblock": "npm remove frontblock frontblock-generic; npm install frontblock-generic@latest frontblock@latest",
  14. "webpack": "webpack --config src/backend/webpack.prod.js --progress --colors"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "http://gitea.frontblock.me/fb-vendor/admin"
  19. },
  20. "author": "frontblock.me",
  21. "license": "ISC",
  22. "dependencies": {
  23. "bsert": "0.0.10",
  24. "bsock": "^0.1.9",
  25. "child-process-promise": "^2.2.1",
  26. "debug": "^4.1.1",
  27. "express": "^4.16.4",
  28. "frontblock": "^0.15.2",
  29. "frontblock-generic": "^0.34.8",
  30. "git-cherrypicker": "0.0.3",
  31. "git-describe": "^4.0.4",
  32. "http": "0.0.0",
  33. "knex": "^0.19.2",
  34. "loadson": "^1.0.0",
  35. "log4js": "^4.5.1",
  36. "lowdb": "^1.0.0",
  37. "node-fetch": "^2.6.0",
  38. "path": "^0.12.7",
  39. "rimraf": "^3.0.0",
  40. "rpclibrary": "^1.3.0",
  41. "simple-git": "^1.124.0",
  42. "spawn-sync": "^2.0.0",
  43. "sqlite3": "^4.1.0",
  44. "trash": "^6.0.0",
  45. "upgiter": "^1.0.1",
  46. "uuid": "^3.3.2"
  47. },
  48. "devDependencies": {
  49. "@types/express": "^4.17.0",
  50. "@types/node": "^11.13.19",
  51. "@types/semver": "^6.0.1",
  52. "terser-webpack-plugin": "^1.4.1",
  53. "ts-loader": "^5.3.3",
  54. "typescript": "^3.5.3",
  55. "webpack": "^4.39.2",
  56. "webpack-cli": "^3.3.5"
  57. },
  58. "files": [
  59. "lib/**/*"
  60. ],
  61. "main": "index.js",
  62. "directories": {
  63. "lib": "lib",
  64. "test": "test"
  65. },
  66. "keywords": []
  67. }