package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "growi",
  3. "version": "7.0.8-RC.0",
  4. "description": "Team collaboration software using markdown",
  5. "license": "MIT",
  6. "private": "true",
  7. "tags": [
  8. "wiki",
  9. "communication",
  10. "documentation",
  11. "collaboration"
  12. ],
  13. "author": "Yuki Takei <yuki@weseek.co.jp>",
  14. "contributors": [],
  15. "homepage": "https://growi.org",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/weseek/growi.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/weseek/growi/issues"
  22. },
  23. "workspaces": {
  24. "packages": [
  25. "packages/*",
  26. "apps/*"
  27. ],
  28. "nohoist": [
  29. "**/uvu/*"
  30. ]
  31. },
  32. "scripts": {
  33. "bootstrap": "yarn install",
  34. "start": "yarn app:server",
  35. "prestart": "yarn app:build",
  36. "app:build": "turbo run build --filter @growi/app",
  37. "app:server": "cd apps/app && yarn server",
  38. "slackbot-proxy:build": "turbo run build --filter @growi/slackbot-proxy",
  39. "slackbot-proxy:server": "cd apps/slackbot-proxy && yarn start:prod",
  40. "release-subpackages": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset publish",
  41. "release-subpackages:snapshot": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset version --snapshot next && changeset publish --no-git-tag --snapshot --tag next",
  42. "version": "yarn version --no-git-tag-version --preid=RC"
  43. },
  44. "dependencies": {
  45. "cross-env": "^7.0.0",
  46. "dotenv-flow": "^3.2.0",
  47. "npm-run-all": "^4.1.5",
  48. "ts-deepmerge": "^6.2.0",
  49. "tslib": "^2.3.1",
  50. "yargs": "^17.7.1"
  51. },
  52. "devDependencies": {
  53. "@changesets/changelog-github": "^0.5.0",
  54. "@changesets/cli": "^2.27.3",
  55. "@swc-node/register": "^1.6.2",
  56. "@swc/core": "^1.3.36",
  57. "@swc/helpers": "^0.4.14",
  58. "@types/css-modules": "^1.0.2",
  59. "@types/eslint": "^8.37.0",
  60. "@types/estree": "^1.0.1",
  61. "@types/node": "^17.0.43",
  62. "@types/path-browserify": "^1.0.0",
  63. "@typescript-eslint/eslint-plugin": "^5.59.7",
  64. "@typescript-eslint/parser": "^5.59.7",
  65. "@vitejs/plugin-react": "^4.0.3",
  66. "@vitest/coverage-v8": "^0.34.6",
  67. "@vitest/ui": "^0.31.1",
  68. "cypress": "^13.3.0",
  69. "cypress-wait-until": "^2.0.1",
  70. "eslint": "^8.41.0",
  71. "eslint-config-next": "^12.1.6",
  72. "eslint-config-weseek": "^2.1.1",
  73. "eslint-import-resolver-typescript": "^3.2.5",
  74. "eslint-plugin-import": "^2.26.0",
  75. "eslint-plugin-react": "^7.30.1",
  76. "eslint-plugin-react-hooks": "^4.6.0",
  77. "eslint-plugin-rulesdir": "^0.2.2",
  78. "eslint-plugin-vitest": "^0.2.3",
  79. "glob": "^8.1.0",
  80. "mock-require": "^3.0.3",
  81. "path-browserify": "^1.0.1",
  82. "reg-keygen-git-hash-plugin": "^0.11.1",
  83. "reg-notify-github-plugin": "^0.11.1",
  84. "reg-notify-slack-plugin": "^0.11.0",
  85. "reg-publish-s3-plugin": "^0.11.0",
  86. "reg-suit": "^0.12.2",
  87. "rollup-plugin-node-externals": "^6.1.1",
  88. "shx": "^0.3.4",
  89. "stylelint": "^16.5.0",
  90. "stylelint-config-recess-order": "^5.0.1",
  91. "stylelint-config-recommended-scss": "^14.0.0",
  92. "ts-node-dev": "^2.0.0",
  93. "tsconfig-paths": "^3.9.0",
  94. "typescript": "~5.0.0",
  95. "vite": "^5.2.9",
  96. "vite-plugin-dts": "^3.8.3",
  97. "vite-tsconfig-paths": "^4.3.2",
  98. "vitest": "^1.5.0",
  99. "vitest-mock-extended": "^1.3.1"
  100. },
  101. "engines": {
  102. "node": "^18 || ^20",
  103. "npm": ">=8.5 < 9.6.6",
  104. "yarn": ">=1.22 <2"
  105. }
  106. }