package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "growi",
  3. "version": "4.3.3-RC",
  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 --scope @growi/app --scope @growi/slack --scope @growi/plugin-*",
  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. "version": "node -p \"require('./package.json').version\"",
  39. "//// scripts for backward compatibility": "",
  40. "build:prod": "echo !!! CAUTION !!! ==> The script 'build:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:build",
  41. "server:prod": "echo !!! CAUTION !!! ==> The script 'server:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:server"
  42. },
  43. "dependencies": {
  44. "cross-env": "^7.0.0",
  45. "dotenv-flow": "^3.2.0",
  46. "npm-run-all": "^4.1.5",
  47. "ts-node": "^9.1.1",
  48. "tsconfig-paths": "^3.9.0",
  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. "ts-jest": "^27.0.4"
  70. },
  71. "engines": {
  72. "node": "^12 || ^14",
  73. "npm": ">=6.11.3 <7",
  74. "yarn": ">=1.19.1 <2"
  75. }
  76. }