package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "growi",
  3. "version": "5.1.1-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": "^17.0.43",
  57. "@types/rewire": "^2.5.28",
  58. "@typescript-eslint/eslint-plugin": "^5.0.0",
  59. "@typescript-eslint/parser": "^5.0.0",
  60. "cypress": "^9.2.0",
  61. "eslint": "^8.18.0",
  62. "eslint-config-next": "^12.1.6",
  63. "eslint-config-weseek": "^2.1.0",
  64. "eslint-import-resolver-typescript": "^3.2.5",
  65. "eslint-plugin-import": "^2.26.0",
  66. "eslint-plugin-jest": "^26.5.3",
  67. "eslint-plugin-react": "^7.30.1",
  68. "eslint-plugin-react-hooks": "^4.6.0",
  69. "jest": "^27.0.6",
  70. "jest-date-mock": "^1.0.8",
  71. "jest-localstorage-mock": "^2.4.14",
  72. "lerna": "^4.0.0",
  73. "postcss": "^8.4.5",
  74. "postcss-scss": "^4.0.3",
  75. "reg-keygen-git-hash-plugin": "^0.11.1",
  76. "reg-notify-github-plugin": "^0.11.1",
  77. "reg-notify-slack-plugin": "^0.11.0",
  78. "reg-publish-s3-plugin": "^0.11.0",
  79. "reg-suit": "^0.11.1",
  80. "rewire": "^5.0.0",
  81. "shipjs": "^0.24.1",
  82. "stylelint": "^14.2.0",
  83. "stylelint-config-recess-order": "^3.0.0",
  84. "ts-jest": "^27.0.4",
  85. "ts-node": "^9.1.1",
  86. "tsconfig-paths": "^3.9.0",
  87. "typescript": "^4.7.3",
  88. "yargs": "^17.3.1"
  89. },
  90. "engines": {
  91. "node": "^14 || ^16",
  92. "npm": ">=6.14 <7 || >=8.1 < 9",
  93. "yarn": ">=1.22 <2"
  94. }
  95. }