package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "growi",
  3. "version": "4.4.5-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. "//// scripts for backward compatibility": "",
  39. "build:prod": "echo !!! CAUTION !!! ==> The script 'build:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:build",
  40. "server:prod": "echo !!! CAUTION !!! ==> The script 'server:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:server"
  41. },
  42. "dependencies": {
  43. "cross-env": "^7.0.0",
  44. "dotenv-flow": "^3.2.0",
  45. "npm-run-all": "^4.1.5",
  46. "ts-node": "^9.1.1",
  47. "tsconfig-paths": "^3.9.0",
  48. "tslib": "^2.3.1",
  49. "typescript": "^4.2.3"
  50. },
  51. "devDependencies": {
  52. "@types/jest": "^26.0.22",
  53. "@types/node": "^14.14.35",
  54. "@types/rewire": "^2.5.28",
  55. "@typescript-eslint/eslint-plugin": "^4.28.5",
  56. "@typescript-eslint/parser": "^4.28.5",
  57. "eslint": "^7.31.0",
  58. "eslint-config-weseek": "^1.1.0",
  59. "eslint-import-resolver-typescript": "^2.4.0",
  60. "eslint-plugin-import": "^2.23.4",
  61. "eslint-plugin-jest": "^24.3.2",
  62. "eslint-plugin-react": "^7.24.0",
  63. "eslint-plugin-react-hooks": "^4.2.0",
  64. "jest": "^27.0.6",
  65. "jest-date-mock": "^1.0.8",
  66. "jest-localstorage-mock": "^2.4.14",
  67. "lerna": "^4.0.0",
  68. "rewire": "^5.0.0",
  69. "shipjs": "^0.23.3",
  70. "ts-jest": "^27.0.4"
  71. },
  72. "engines": {
  73. "node": "^12 || ^14",
  74. "npm": ">=6.11.3 <7",
  75. "yarn": ">=1.19.1 <2"
  76. }
  77. }