package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": ["packages/*"],
  25. "nohoist": ["**/slackbot-proxy/bootstrap"]
  26. },
  27. "scripts": {
  28. "start": "yarn app:server",
  29. "prestart": "yarn app:build",
  30. "app:build": "yarn lerna run build --scope @growi/app --scope @growi/slack --scope @growi/plugin-pukiwiki-like-linker",
  31. "app:server": "yarn lerna run server --scope @growi/app",
  32. "slackbot-proxy:build": "yarn lerna run build --scope @growi/slackbot-proxy --scope @growi/slack",
  33. "slackbot-proxy:server": "yarn lerna run start:prod --scope @growi/slackbot-proxy",
  34. "version": "node -p \"require('./package.json').version\"",
  35. "//// scripts for backward compatibility": "",
  36. "build:prod": "echo !!! CAUTION !!! ==> The script 'build:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:build",
  37. "server:prod": "echo !!! CAUTION !!! ==> The script 'server:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:server"
  38. },
  39. "dependencies": {
  40. },
  41. "devDependencies": {
  42. "@typescript-eslint/eslint-plugin": "^4.28.5",
  43. "@typescript-eslint/parser": "^4.28.5",
  44. "eslint": "^7.31.0",
  45. "eslint-config-weseek": "^1.1.0",
  46. "eslint-import-resolver-typescript": "^2.4.0",
  47. "eslint-plugin-import": "^2.23.4",
  48. "eslint-plugin-jest": "^24.3.2",
  49. "eslint-plugin-react": "^7.24.0",
  50. "eslint-plugin-react-hooks": "^4.2.0",
  51. "lerna": "^4.0.0"
  52. },
  53. "engines": {
  54. "node": "^12 || ^14",
  55. "npm": ">=6.11.3 <7",
  56. "yarn": ">=1.19.1 <2"
  57. }
  58. }