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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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/Launcher.js",
  8. "build": "npm run clean; npm run build-backend; npm run build-frontend",
  9. "test": "npm run clean && npm run build-backend && mocha lib/test/backendTest.js",
  10. "build-backend": "tsc;",
  11. "build-frontend": "mkdir dist; mkdir dist/static; npm run build-dashboard;",
  12. "build-dashboard": "cd src/frontend; npm i && npm run build; cp -r dist/* ../../dist/static",
  13. "clean": "rm -rf lib static plugins conf dist widget .rpt2_cache *.js *.ts src/frontend/dist data",
  14. "update-frontblock": "npm remove frontblock frontblock-generic; npm install frontblock-generic@latest frontblock@latest",
  15. "webpack": "webpack --config src/backend/webpack.prod.js --progress --colors"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "http://gitea.frontblock.me/fb-vendor/admin"
  20. },
  21. "author": "frontblock.me",
  22. "license": "ISC",
  23. "dependencies": {
  24. "@types/mocha": "^5.2.7",
  25. "bsert": "0.0.10",
  26. "bsock": "^0.1.9",
  27. "child-process-promise": "^2.2.1",
  28. "debug": "^4.1.1",
  29. "express": "^4.16.4",
  30. "frontblock": "^0.15.2",
  31. "frontblock-generic": "^0.34.8",
  32. "git-cherrypicker": "0.0.3",
  33. "git-describe": "^4.0.4",
  34. "http": "0.0.0",
  35. "knex": "^0.19.2",
  36. "loadson": "^1.0.0",
  37. "log4js": "^4.5.1",
  38. "lowdb": "^1.0.0",
  39. "mocha": "^7.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. "terser-webpack-plugin": "^1.4.1",
  60. "ts-loader": "^5.3.3",
  61. "typescript": "^3.5.3",
  62. "webpack": "^4.39.2",
  63. "webpack-cli": "^3.3.5"
  64. },
  65. "files": [
  66. "lib/**/*"
  67. ],
  68. "main": "index.js",
  69. "directories": {
  70. "lib": "lib",
  71. "test": "test"
  72. },
  73. "keywords": []
  74. }