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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "frontcraft",
  3. "description": "Guild website framework",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "tsc": "tsc",
  7. "launch": "node dist/server/main.js",
  8. "start": "npm run build && npm run launch",
  9. "start-backend": "npm run build-backend && npm run launch",
  10. "test": "rm -rf data && npm run build-backend && mocha lib/test/backendTest.js",
  11. "build": "npm run build-backend && npm run build-frontend",
  12. "build-backend": "npm run clean-backend && tsc",
  13. "build-frontend": "npm run clean-frontend && (mkdir static || rm -rf static/*) && npm run build-dashboard",
  14. "build-dashboard": "cd src/frontend && npm i && npm run build && cp -r dist/* ../../static",
  15. "clean": "rm -rf data && npm run clean-backend && npm run clean-frontend",
  16. "clean-backend": "rm -rf lib plugins config widget .rpt2_cache *.js *.ts",
  17. "clean-frontend": "rm -rf src/frontend/dist static",
  18. "webpack": "webpack --config src/backend/webpack.prod.js --progress --colors",
  19. "setangular": "ng update @angular/cli@8.2.2 @angular/core@8.2.2 @angular/compiler-cli@8.2.2"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "http://gitea.frontblock.me/fb-vendor/admin"
  24. },
  25. "author": "frontblock.me",
  26. "license": "ISC",
  27. "dependencies": {
  28. "@types/mocha": "^5.2.7",
  29. "bsert": "0.0.10",
  30. "bsock": "^0.1.9",
  31. "child-process-promise": "^2.2.1",
  32. "circular-buffer": "^1.0.2",
  33. "crypto-js": "^3.1.9-1",
  34. "debug": "^4.1.1",
  35. "express": "^4.16.4",
  36. "frontblock": "^0.15.2",
  37. "frontblock-generic": "^0.34.8",
  38. "git-cherrypicker": "0.0.3",
  39. "git-describe": "^4.0.4",
  40. "http": "0.0.0",
  41. "knex": "^0.19.2",
  42. "loadson": "^1.0.0",
  43. "log4js": "^4.5.1",
  44. "lowdb": "^1.0.0",
  45. "node-fetch": "^2.6.0",
  46. "path": "^0.12.7",
  47. "reflect-metadata": "^0.1.13",
  48. "rimraf": "^3.0.0",
  49. "rpclibrary": "^1.9.2",
  50. "simple-git": "^1.124.0",
  51. "spawn-sync": "^2.0.0",
  52. "sqlite3": "^4.1.1",
  53. "trash": "^6.0.0",
  54. "tsyringe": "^4.0.1",
  55. "upgiter": "^1.0.4",
  56. "uuid": "^3.3.3",
  57. "xml2js": "^0.4.22"
  58. },
  59. "devDependencies": {
  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. }