package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "growi",
  3. "version": "7.0.11-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. "packageManager": "yarn@1.22.22",
  24. "workspaces": {
  25. "packages": [
  26. "packages/*",
  27. "apps/*"
  28. ],
  29. "nohoist": [
  30. "**/uvu/*"
  31. ]
  32. },
  33. "scripts": {
  34. "bootstrap": "yarn install",
  35. "start": "yarn app:server",
  36. "prestart": "yarn app:build",
  37. "app:build": "turbo run build --filter @growi/app",
  38. "app:server": "cd apps/app && yarn server",
  39. "slackbot-proxy:build": "turbo run build --filter @growi/slackbot-proxy",
  40. "slackbot-proxy:server": "cd apps/slackbot-proxy && yarn start:prod",
  41. "version-subpackages": "changeset version && yarn upgrade --scope=@growi",
  42. "release-subpackages": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset publish",
  43. "release-subpackages:snapshot": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset version --snapshot next && changeset publish --no-git-tag --snapshot --tag next",
  44. "version": "yarn version --no-git-tag-version --preid=RC"
  45. },
  46. "dependencies": {
  47. "cross-env": "^7.0.0",
  48. "dotenv-flow": "^3.2.0",
  49. "npm-run-all": "^4.1.5",
  50. "ts-deepmerge": "^6.2.0",
  51. "tslib": "^2.3.1",
  52. "yargs": "^17.7.1"
  53. },
  54. "// comments for defDependencies": {
  55. "vitest": "v1.6.0 occures an error on ci-app-test: \"ENOENT: no such file or directory, lstat '/home/runner/work/growi/growi/apps/app/coverage/.tmp'\""
  56. },
  57. "devDependencies": {
  58. "@changesets/changelog-github": "^0.5.0",
  59. "@changesets/cli": "^2.27.3",
  60. "@playwright/test": "^1.44.1",
  61. "@swc-node/register": "^1.9.1",
  62. "@swc/core": "^1.5.25",
  63. "@swc/helpers": "^0.5.11",
  64. "@types/css-modules": "^1.0.2",
  65. "@types/eslint": "^8.37.0",
  66. "@types/estree": "^1.0.1",
  67. "@types/node": "^20.14.0",
  68. "@types/path-browserify": "^1.0.0",
  69. "@typescript-eslint/eslint-plugin": "^5.59.7",
  70. "@typescript-eslint/parser": "^5.59.7",
  71. "@vitejs/plugin-react": "^4.0.3",
  72. "@vitest/coverage-v8": "^0.34.6",
  73. "@vitest/ui": "^0.31.1",
  74. "cypress": "^13.3.0",
  75. "cypress-wait-until": "^2.0.1",
  76. "eslint": "^8.41.0",
  77. "eslint-config-next": "^12.1.6",
  78. "eslint-config-weseek": "^2.1.1",
  79. "eslint-import-resolver-typescript": "^3.2.5",
  80. "eslint-plugin-import": "^2.26.0",
  81. "eslint-plugin-playwright": "^1.6.2",
  82. "eslint-plugin-react": "^7.30.1",
  83. "eslint-plugin-react-hooks": "^4.6.0",
  84. "eslint-plugin-rulesdir": "^0.2.2",
  85. "eslint-plugin-vitest": "^0.2.3",
  86. "glob": "^8.1.0",
  87. "mock-require": "^3.0.3",
  88. "nodemon": "^3.1.3",
  89. "path-browserify": "^1.0.1",
  90. "reg-keygen-git-hash-plugin": "^0.11.1",
  91. "reg-notify-github-plugin": "^0.11.1",
  92. "reg-notify-slack-plugin": "^0.11.0",
  93. "reg-publish-s3-plugin": "^0.11.0",
  94. "reg-suit": "^0.12.2",
  95. "rollup-plugin-node-externals": "^6.1.1",
  96. "shx": "^0.3.4",
  97. "stylelint": "^16.5.0",
  98. "stylelint-config-recess-order": "^5.0.1",
  99. "stylelint-config-recommended-scss": "^14.0.0",
  100. "ts-node": "^10.9.2",
  101. "ts-patch": "^3.2.0",
  102. "tsconfig-paths": "^4.2.0",
  103. "typescript": "~5.0.0",
  104. "typescript-transform-paths": "^3.4.7",
  105. "vite": "^5.2.9",
  106. "vite-plugin-dts": "^3.8.3",
  107. "vite-tsconfig-paths": "^4.3.2",
  108. "vitest": "~1.5.3",
  109. "vitest-mock-extended": "^1.3.1"
  110. },
  111. "engines": {
  112. "node": "^18 || ^20",
  113. "npm": ">=8.5 < 9.6.6",
  114. "yarn": ">=1.22 <2"
  115. }
  116. }