package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "growi",
  3. "version": "6.1.4-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. "bump-versions:patch": "turbo run version -- --patch",
  42. "bump-versions:rc": "turbo run version -- --prepatch --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": "^3.0.0",
  49. "tslib": "^2.3.1",
  50. "yargs": "^17.7.1"
  51. },
  52. "devDependencies": {
  53. "@swc-node/register": "^1.6.2",
  54. "@swc/core": "^1.3.36",
  55. "@swc/helpers": "^0.4.14",
  56. "@testing-library/cypress": "^8.0.2",
  57. "@types/css-modules": "^1.0.2",
  58. "@types/eslint": "^8.37.0",
  59. "@types/estree": "^1.0.1",
  60. "@types/node": "^17.0.43",
  61. "@types/path-browserify": "^1.0.0",
  62. "@types/rewire": "^2.5.28",
  63. "@typescript-eslint/eslint-plugin": "^5.59.7",
  64. "@typescript-eslint/parser": "^5.59.7",
  65. "@vitejs/plugin-react": "^3.1.0",
  66. "@vitest/coverage-c8": "^0.31.1",
  67. "@vitest/ui": "^0.31.1",
  68. "cypress": "^12.0.1",
  69. "cypress-wait-until": "^1.7.2",
  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. "postcss": "^8.4.5",
  83. "postcss-scss": "^4.0.3",
  84. "reg-keygen-git-hash-plugin": "^0.11.1",
  85. "reg-notify-github-plugin": "^0.11.1",
  86. "reg-notify-slack-plugin": "^0.11.0",
  87. "reg-publish-s3-plugin": "^0.11.0",
  88. "reg-suit": "^0.12.1",
  89. "stylelint": "^14.2.0",
  90. "stylelint-config-recess-order": "^3.0.0",
  91. "ts-node-dev": "^2.0.0",
  92. "tsconfig-paths": "^3.9.0",
  93. "typescript": "~4.9",
  94. "unplugin-swc": "^1.3.2",
  95. "vite": "^4.3.8",
  96. "vite-plugin-dts": "^2.0.0-beta.0",
  97. "vite-tsconfig-paths": "^4.2.0",
  98. "vitest": "^0.31.4",
  99. "vitest-mock-extended": "^1.1.3"
  100. },
  101. "engines": {
  102. "node": "^16 || ^18",
  103. "npm": ">=8.5 < 9",
  104. "yarn": ">=1.22 <2"
  105. }
  106. }