package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "cross-env": "^7.0.0",
  41. "dotenv-flow": "^3.2.0",
  42. "npm-run-all": "^4.1.5",
  43. "ts-node": "^9.1.1",
  44. "tsconfig-paths": "^3.9.0",
  45. "typescript": "^4.2.3"
  46. },
  47. "devDependencies": {
  48. "@typescript-eslint/eslint-plugin": "^4.28.5",
  49. "@typescript-eslint/parser": "^4.28.5",
  50. "@types/jest": "^26.0.22",
  51. "@types/node": "^14.14.35",
  52. "eslint": "^7.31.0",
  53. "eslint-config-weseek": "^1.1.0",
  54. "eslint-import-resolver-typescript": "^2.4.0",
  55. "eslint-plugin-import": "^2.23.4",
  56. "eslint-plugin-jest": "^24.3.2",
  57. "eslint-plugin-react": "^7.24.0",
  58. "eslint-plugin-react-hooks": "^4.2.0",
  59. "jest": "^27.0.6",
  60. "jest-date-mock": "^1.0.8",
  61. "lerna": "^4.0.0",
  62. "ts-jest": "^27.0.4"
  63. },
  64. "engines": {
  65. "node": "^12 || ^14",
  66. "npm": ">=6.11.3 <7",
  67. "yarn": ">=1.19.1 <2"
  68. }
  69. }