package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "growi",
  3. "version": "6.0.0-RC.7",
  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. ],
  27. "nohoist": [
  28. "**/slackbot-proxy/bootstrap"
  29. ]
  30. },
  31. "scripts": {
  32. "start": "yarn app:server",
  33. "prestart": "yarn app:build",
  34. "app:build": "yarn lerna run build",
  35. "app:server": "yarn lerna run server --scope @growi/app",
  36. "slackbot-proxy:build": "yarn lerna run build --scope @growi/slackbot-proxy --scope @growi/slack",
  37. "slackbot-proxy:server": "yarn lerna run start:prod --scope @growi/slackbot-proxy",
  38. "bump-versions:premajor": "node ./bin/github-actions/bump-versions -i premajor",
  39. "bump-versions:preminor": "node ./bin/github-actions/bump-versions -i preminor",
  40. "bump-versions:patch": "node ./bin/github-actions/bump-versions -i patch",
  41. "bump-versions:rc": "node ./bin/github-actions/bump-versions -i prerelease",
  42. "bump-versions:slackbot-proxy": "node ./bin/github-actions/bump-versions -i prerelease -d packages/slackbot-proxy --preid slackbot-proxy --update-dependencies false",
  43. "//// scripts for backward compatibility": "",
  44. "build:prod": "echo !!! CAUTION !!! ==> The script 'build:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:build",
  45. "server:prod": "echo !!! CAUTION !!! ==> The script 'server:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:server"
  46. },
  47. "dependencies": {
  48. "cross-env": "^7.0.0",
  49. "dotenv-flow": "^3.2.0",
  50. "npm-run-all": "^4.1.5",
  51. "ts-deepmerge": "^3.0.0",
  52. "tslib": "^2.3.1"
  53. },
  54. "devDependencies": {
  55. "@swc/core": "^1.2.239",
  56. "@swc/helpers": "^0.4.7",
  57. "@testing-library/cypress": "^8.0.2",
  58. "@types/css-modules": "^1.0.2",
  59. "@types/jest": "^26.0.22",
  60. "@types/node": "^17.0.43",
  61. "@types/rewire": "^2.5.28",
  62. "@typescript-eslint/eslint-plugin": "^5.0.0",
  63. "@typescript-eslint/parser": "^5.0.0",
  64. "cypress": "^9.2.0",
  65. "eslint": "^8.18.0",
  66. "eslint-config-next": "^12.1.6",
  67. "eslint-config-weseek": "^2.1.0",
  68. "eslint-import-resolver-typescript": "^3.2.5",
  69. "eslint-plugin-import": "^2.26.0",
  70. "eslint-plugin-jest": "^26.5.3",
  71. "eslint-plugin-react": "^7.30.1",
  72. "eslint-plugin-react-hooks": "^4.6.0",
  73. "jest": "^28.1.3",
  74. "jest-date-mock": "^1.0.8",
  75. "jest-localstorage-mock": "^2.4.14",
  76. "lerna": "^4.0.0",
  77. "postcss": "^8.4.5",
  78. "postcss-scss": "^4.0.3",
  79. "reg-keygen-git-hash-plugin": "^0.11.1",
  80. "reg-notify-github-plugin": "^0.11.1",
  81. "reg-notify-slack-plugin": "^0.11.0",
  82. "reg-publish-s3-plugin": "^0.11.0",
  83. "reg-suit": "^0.12.1",
  84. "rewire": "^5.0.0",
  85. "shipjs": "^0.24.1",
  86. "stylelint": "^14.2.0",
  87. "stylelint-config-recess-order": "^3.0.0",
  88. "ts-jest": "^28.0.7",
  89. "ts-node": "^10.9.1",
  90. "tsconfig-paths": "^3.9.0",
  91. "typescript": "~4.7",
  92. "yargs": "^17.3.1"
  93. },
  94. "engines": {
  95. "node": "^14 || ^16",
  96. "npm": ">=6.14 <7 || >=8.1 < 9",
  97. "yarn": ">=1.22 <2"
  98. }
  99. }