package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@growi/remark-lsx",
  3. "version": "7.0.3-RC.0",
  4. "description": "GROWI plugin to list pages",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi",
  8. "growi-plugin"
  9. ],
  10. "files": [
  11. "dist"
  12. ],
  13. "type": "module",
  14. "scripts": {
  15. "build": "run-p build:*",
  16. "build:client": "vite build -c vite.client.config.ts",
  17. "build:server": "vite build -c vite.server.config.ts",
  18. "clean": "shx rm -rf dist",
  19. "dev": "run-p dev:*",
  20. "dev:client": "vite build -c vite.client.config.ts --mode dev",
  21. "dev:server": "vite build -c vite.server.config.ts --mode dev",
  22. "watch": "run-p watch:*",
  23. "watch:client": "yarn dev:client -w --emptyOutDir=false",
  24. "watch:server": "yarn dev:server -w --emptyOutDir=false",
  25. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  26. "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
  27. "lint:typecheck": "tsc",
  28. "lint": "run-p lint:*",
  29. "test": "vitest run --coverage",
  30. "version": "yarn version --no-git-tag-version --preid=RC"
  31. },
  32. "// comments for dependencies": {
  33. "escape-string-regexp": "5.0.0 or above exports only ESM"
  34. },
  35. "dependencies": {
  36. "@growi/core": "link:../core",
  37. "@growi/remark-growi-directive": "link:../remark-growi-directive",
  38. "@growi/ui": "link:../ui",
  39. "escape-string-regexp": "^4.0.0",
  40. "express": "^4.19.2",
  41. "http-errors": "^2.0.0",
  42. "mongoose": "^6.11.3",
  43. "swr": "^2.2.2"
  44. },
  45. "devDependencies": {
  46. "eslint-plugin-regex": "^1.8.0",
  47. "hast-util-sanitize": "^4.1.0",
  48. "hast-util-select": "^5.0.5",
  49. "unified": "^10.1.2",
  50. "unist-util-visit": "^4.0.0"
  51. },
  52. "peerDependencies": {
  53. "next": "^14",
  54. "react": "^18.2.0",
  55. "react-dom": "^18.2.0"
  56. }
  57. }