2
0

package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "growi",
  3. "version": "4.3.3-RC",
  4. "description": "Team collaboration software using markdown",
  5. "tags": [
  6. "wiki",
  7. "communication",
  8. "documentation",
  9. "collaboration"
  10. ],
  11. "author": "Yuki Takei <yuki@weseek.co.jp>",
  12. "contributors": [],
  13. "license": "MIT",
  14. "homepage": "https://growi.org",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/weseek/growi.git"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/weseek/growi/issues"
  21. },
  22. "private": true,
  23. "workspaces": {
  24. "packages": ["packages/*"],
  25. "nohoist": ["**/slackbot-proxy/bootstrap"]
  26. },
  27. "scripts": {
  28. "build:api:jsdoc": "swagger-jsdoc -o tmp/swagger.json -d config/swagger-definition.js",
  29. "build:apiv3:jsdoc": "cross-env API_VERSION=3 npm run build:api:jsdoc -- \"src/server/routes/apiv3/**/*.js\" \"src/server/models/**/*.js\"",
  30. "build:apiv1:jsdoc": "cross-env API_VERSION=1 npm run build:api:jsdoc -- \"src/server/*/*.js\" \"src/server/models/**/*.js\"",
  31. "build:dev:app:watch": "npm run build:dev:app -- --watch",
  32. "build:dev:app:watch:poll": "npm run build:dev:app -- --watch --watch-poll",
  33. "build:dev:app": "env-cmd -f config/env.dev.js webpack --config config/webpack.dev.js --progress",
  34. "build:dev:watch": "npm run build:dev:app:watch",
  35. "build:dev:watch:poll": "npm run build:dev:app:watch:poll",
  36. "build:dev": "yarn build:dev:app",
  37. "build:prod": "yarn lerna run build --scope @growi/app --scope @growi/slack --scope @growi/plugin-pukiwiki-like-linker",
  38. "build:slack": "lerna run build --scope @growi/slack",
  39. "build": "npm run build:dev:watch",
  40. "build:poll": "npm run build:dev:watch:poll",
  41. "clean:app": "rimraf -- public/js public/styles",
  42. "clean:report": "rimraf -- report",
  43. "clean": "npm-run-all -p clean:*",
  44. "console": "env-cmd -f config/env.dev.js node --experimental-repl-await src/server/console.js",
  45. "plugin:def": "node bin/generate-plugin-definitions-source.js",
  46. "prebuild:dev:watch": "npm run prebuild:dev",
  47. "prebuild:dev": "npm run clean:app && env-cmd -f config/env.dev.js npm run plugin:def && env-cmd -f config/env.dev.js npm run resource && yarn build:slack",
  48. "prelint:swagger2openapi": "npm run build:apiv3:jsdoc",
  49. "preserver:prod": "npm run migrate",
  50. "prestart": "npm run build:prod",
  51. "resource": "node bin/download-cdn-resources.js",
  52. "server:nolazy": "env-cmd -f config/env.dev.js node-dev --nolazy --inspect src/server/app.js",
  53. "server:dev": "env-cmd -f config/env.dev.js node-dev --expose_gc --inspect src/server/app.js",
  54. "server:prod:ci": "npm run server:prod -- --ci",
  55. "server:prod": "env-cmd -f config/env.prod.js node --expose_gc src/server/app.js",
  56. "server": "npm run server:dev",
  57. "start": "npm run server:prod",
  58. "test": "jest --config=config/jest.config.js --passWithNoTests -- ",
  59. "version": "node -p \"require('./package.json').version\"",
  60. "webpack": "webpack"
  61. },
  62. "dependencies": {
  63. },
  64. "devDependencies": {
  65. "@typescript-eslint/eslint-plugin": "^4.28.5",
  66. "@typescript-eslint/parser": "^4.28.5",
  67. "eslint": "^7.31.0",
  68. "eslint-config-weseek": "^1.1.0",
  69. "eslint-import-resolver-typescript": "^2.4.0",
  70. "eslint-plugin-import": "^2.23.4",
  71. "eslint-plugin-jest": "^24.3.2",
  72. "eslint-plugin-react": "^7.24.0",
  73. "eslint-plugin-react-hooks": "^4.2.0",
  74. "lerna": "^4.0.0"
  75. },
  76. "engines": {
  77. "node": "^12 || ^14",
  78. "npm": ">=6.11.3 <7",
  79. "yarn": ">=1.19.1 <2"
  80. }
  81. }