package.json 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "growi",
  3. "version": "5.1.0-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. ],
  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. "tslib": "^2.3.1"
  52. },
  53. "devDependencies": {
  54. "@testing-library/cypress": "^8.0.2",
  55. "@types/jest": "^26.0.22",
  56. "@types/node": "^14.14.35",
  57. "@types/rewire": "^2.5.28",
  58. "@typescript-eslint/eslint-plugin": "^4.28.5",
  59. "@typescript-eslint/parser": "^4.28.5",
  60. "cypress": "^9.2.0",
  61. "eslint": "^7.31.0",
  62. "eslint-config-weseek": "^2.1.0",
  63. "eslint-import-resolver-typescript": "^2.4.0",
  64. "eslint-plugin-import": "^2.23.4",
  65. "eslint-plugin-jest": "^24.3.2",
  66. "eslint-plugin-react": "^7.24.0",
  67. "eslint-plugin-react-hooks": "^4.2.0",
  68. "jest": "^27.0.6",
  69. "jest-date-mock": "^1.0.8",
  70. "jest-localstorage-mock": "^2.4.14",
  71. "lerna": "^4.0.0",
  72. "postcss": "^8.4.5",
  73. "postcss-scss": "^4.0.3",
  74. "reg-keygen-git-hash-plugin": "^0.11.1",
  75. "reg-notify-github-plugin": "^0.11.1",
  76. "reg-notify-slack-plugin": "^0.11.0",
  77. "reg-publish-s3-plugin": "^0.11.0",
  78. "reg-suit": "^0.11.1",
  79. "rewire": "^5.0.0",
  80. "shipjs": "^0.24.1",
  81. "stylelint": "^14.2.0",
  82. "stylelint-config-recess-order": "^3.0.0",
  83. "ts-jest": "^27.0.4",
  84. "ts-node": "^9.1.1",
  85. "tsconfig-paths": "^3.9.0",
  86. "typescript": "~4.6",
  87. "yargs": "^17.3.1"
  88. },
  89. "engines": {
  90. "node": "^14 || ^16",
  91. "npm": ">=6.14 <7 || >=8.1 < 9",
  92. "yarn": ">=1.22 <2"
  93. }
  94. }