Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "circular-buffer": "^1.0.2",
  30. "crypto-js": "^3.1.9-1",
  31. "debug": "^4.1.1",
  32. "express": "^4.16.4",
  33. "frontblock": "^0.15.2",
  34. "frontblock-generic": "^0.34.8",
  35. "git-cherrypicker": "0.0.3",
  36. "git-describe": "^4.0.4",
  37. "http": "0.0.0",
  38. "knex": "^0.19.2",
  39. "loadson": "^1.0.0",
  40. "log4js": "^4.5.1",
  41. "lowdb": "^1.0.0",
  42. "node-fetch": "^2.6.0",
  43. "path": "^0.12.7",
  44. "reflect-metadata": "^0.1.13",
  45. "rimraf": "^3.0.0",
  46. "rpclibrary": "^1.7.0",
  47. "simple-git": "^1.124.0",
  48. "spawn-sync": "^2.0.0",
  49. "sqlite3": "^4.1.1",
  50. "trash": "^6.0.0",
  51. "tsyringe": "^4.0.1",
  52. "upgiter": "^1.0.4",
  53. "uuid": "^3.3.3",
  54. "xml2js": "^0.4.22"
  55. },
  56. "devDependencies": {
  57. "@types/express": "^4.17.0",
  58. "@types/node": "^11.13.19",
  59. "@types/semver": "^6.0.1",
  60. "madge": "^3.6.0",
  61. "mocha": "^7.0.0",
  62. "terser-webpack-plugin": "^1.4.1",
  63. "ts-loader": "^5.3.3",
  64. "typescript": "^3.5.3",
  65. "webpack": "^4.39.2",
  66. "webpack-cli": "^3.3.5"
  67. },
  68. "files": [
  69. "lib/**/*"
  70. ],
  71. "main": "index.js",
  72. "directories": {
  73. "lib": "lib",
  74. "test": "test"
  75. },
  76. "keywords": []
  77. }