您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "frontcraft",
  3. "description": "Guild website framework",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "tsc": "tsc",
  7. "knex": "knex",
  8. "launch": "node lib/src/backend/Launcher.js > log.txt",
  9. "start": "npm run build && npm run launch",
  10. "start-backend": "npm run build-backend && npm run launch",
  11. "test": "rm -rf data && npm run build-backend && mocha lib/test/backendTest.js",
  12. "build": "npm run build-frontend && npm run build-backend",
  13. "build-backend": "npm run clean-backend && npm run tsc",
  14. "build-frontend": "npm run clean-frontend && (mkdir dist || rm -rf dist/*) && npm run build-dashboard",
  15. "build-dashboard": "cd src/frontend && npm run build && cp -r dist/* ../../dist",
  16. "clean": "rm -rf data && npm run clean-backend && npm run clean-frontend",
  17. "clean-backend": "rm -rf lib plugins config widget .rpt2_cache ",
  18. "clean-frontend": "rm -rf src/frontend/dist dist"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "http://gitea.frontblock.me/fb-vendor/admin"
  23. },
  24. "author": "frontblock.me",
  25. "license": "ISC",
  26. "dependencies": {
  27. "@types/mocha": "^5.2.7",
  28. "bsert": "0.0.10",
  29. "bsock": "^0.1.9",
  30. "child-process-promise": "^2.2.1",
  31. "circular-buffer": "^1.0.2",
  32. "crypto-js": "^3.1.9-1",
  33. "debug": "^4.1.1",
  34. "domino": "^2.1.4",
  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. "loadson": "^1.0.0",
  42. "log4js": "^4.5.1",
  43. "lowdb": "^1.0.0",
  44. "ngx-cookie-service": "^2.4.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.10.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. "xmlhttprequest": "^1.8.0"
  59. },
  60. "devDependencies": {
  61. "knex": "^0.19.5",
  62. "madge": "^3.6.0",
  63. "mocha": "^7.1.0",
  64. "terser-webpack-plugin": "^1.4.1",
  65. "ts-loader": "^5.3.3",
  66. "typescript": "^3.5.3"
  67. },
  68. "files": [
  69. "lib/**/*"
  70. ],
  71. "main": "index.js",
  72. "directories": {
  73. "lib": "lib",
  74. "test": "test"
  75. },
  76. "keywords": []
  77. }