package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "growi",
  3. "version": "6.3.3-RC.0",
  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": [
  25. "packages/*",
  26. "apps/*"
  27. ],
  28. "nohoist": [
  29. "**/uvu/*",
  30. "**/slackbot-proxy/bootstrap"
  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": "yarn version --no-git-tag-version --preid=RC"
  42. },
  43. "dependencies": {
  44. "cross-env": "^7.0.0",
  45. "dotenv-flow": "^3.2.0",
  46. "npm-run-all": "^4.1.5",
  47. "ts-deepmerge": "^3.0.0",
  48. "tslib": "^2.3.1",
  49. "yargs": "^17.7.1"
  50. },
  51. "devDependencies": {
  52. "@swc-node/register": "^1.6.2",
  53. "@swc/core": "^1.3.36",
  54. "@swc/helpers": "^0.4.14",
  55. "@types/css-modules": "^1.0.2",
  56. "@types/eslint": "^8.37.0",
  57. "@types/estree": "^1.0.1",
  58. "@types/node": "^17.0.43",
  59. "@types/path-browserify": "^1.0.0",
  60. "@typescript-eslint/eslint-plugin": "^5.59.7",
  61. "@typescript-eslint/parser": "^5.59.7",
  62. "@vitejs/plugin-react": "^4.0.3",
  63. "@vitest/coverage-v8": "^0.34.6",
  64. "@vitest/ui": "^0.31.1",
  65. "cypress": "^13.3.0",
  66. "cypress-wait-until": "^2.0.1",
  67. "eslint": "^8.41.0",
  68. "eslint-config-next": "^12.1.6",
  69. "eslint-config-weseek": "^2.1.1",
  70. "eslint-import-resolver-typescript": "^3.2.5",
  71. "eslint-plugin-import": "^2.26.0",
  72. "eslint-plugin-react": "^7.30.1",
  73. "eslint-plugin-react-hooks": "^4.6.0",
  74. "eslint-plugin-rulesdir": "^0.2.2",
  75. "eslint-plugin-vitest": "^0.2.3",
  76. "glob": "^8.1.0",
  77. "mock-require": "^3.0.3",
  78. "path-browserify": "^1.0.1",
  79. "postcss": "^8.4.31",
  80. "postcss-scss": "^4.0.3",
  81. "reg-keygen-git-hash-plugin": "^0.11.1",
  82. "reg-notify-github-plugin": "^0.11.1",
  83. "reg-notify-slack-plugin": "^0.11.0",
  84. "reg-publish-s3-plugin": "^0.11.0",
  85. "reg-suit": "^0.12.2",
  86. "rollup-plugin-node-externals": "^6.1.1",
  87. "shx": "^0.3.4",
  88. "stylelint": "^14.2.0",
  89. "stylelint-config-recess-order": "^3.0.0",
  90. "ts-node-dev": "^2.0.0",
  91. "tsconfig-paths": "^3.9.0",
  92. "typescript": "~5.0.0",
  93. "vite": "^4.5.2",
  94. "vite-plugin-dts": "^2.3.0",
  95. "vite-tsconfig-paths": "^4.2.0",
  96. "vitest": "^0.34.6",
  97. "vitest-mock-extended": "^1.1.3"
  98. },
  99. "engines": {
  100. "node": "^16 || ^18",
  101. "npm": ">=8.5 < 9",
  102. "yarn": ">=1.22 <2"
  103. }
  104. }