package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "growi",
  3. "version": "6.0.16-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. "**/slackbot-proxy/bootstrap"
  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. "bump-versions:premajor": "node ./bin/github-actions/bump-versions -i premajor",
  41. "bump-versions:preminor": "node ./bin/github-actions/bump-versions -i preminor",
  42. "bump-versions:patch": "node ./bin/github-actions/bump-versions -i patch",
  43. "bump-versions:rc": "node ./bin/github-actions/bump-versions -i prerelease",
  44. "bump-versions:slackbot-proxy": "node ./bin/github-actions/bump-versions -i prerelease -d apps/slackbot-proxy --preid slackbot-proxy --update-dependencies false"
  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": "^3.0.0",
  51. "tslib": "^2.3.1",
  52. "yargs": "^17.7.1"
  53. },
  54. "devDependencies": {
  55. "@swc-node/jest": "^1.6.2",
  56. "@swc-node/register": "^1.6.2",
  57. "@swc/core": "^1.3.36",
  58. "@swc/helpers": "^0.4.14",
  59. "@swc/jest": "^0.2.24",
  60. "@testing-library/cypress": "^8.0.2",
  61. "@types/css-modules": "^1.0.2",
  62. "@types/jest": "^26.0.22",
  63. "@types/node": "^17.0.43",
  64. "@types/rewire": "^2.5.28",
  65. "@typescript-eslint/eslint-plugin": "^5.54.0",
  66. "@typescript-eslint/parser": "^5.54.0",
  67. "@vitejs/plugin-react": "^3.1.0",
  68. "cypress": "^12.0.1",
  69. "cypress-wait-until": "^1.7.2",
  70. "eslint": "^8.35.0",
  71. "eslint-config-next": "^12.1.6",
  72. "eslint-config-weseek": "^2.1.0",
  73. "eslint-import-resolver-typescript": "^3.2.5",
  74. "eslint-plugin-import": "^2.26.0",
  75. "eslint-plugin-jest": "^26.5.3",
  76. "eslint-plugin-react": "^7.30.1",
  77. "eslint-plugin-react-hooks": "^4.6.0",
  78. "glob": "^8.1.0",
  79. "jest": "^28.1.3",
  80. "jest-date-mock": "^1.0.8",
  81. "jest-localstorage-mock": "^2.4.14",
  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. "shipjs": "^0.24.1",
  90. "stylelint": "^14.2.0",
  91. "stylelint-config-recess-order": "^3.0.0",
  92. "tsconfig-paths": "^3.9.0",
  93. "ts-node-dev": "^2.0.0",
  94. "typescript": "~4.9",
  95. "unplugin-swc": "^1.3.2",
  96. "vite": "^4.1.1",
  97. "vite-plugin-dts": "^2.0.0-beta.0"
  98. },
  99. "engines": {
  100. "node": "^16 || ^18",
  101. "npm": ">=8.5 < 9",
  102. "yarn": ">=1.22 <2"
  103. }
  104. }