package.json 800 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@growi/plugin-attachment-refs",
  3. "version": "4.3.3-RC",
  4. "description": "GROWI Plugin to add ref/refimg/refs/refsimg tags",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi",
  8. "growi-plugin"
  9. ],
  10. "main": "index.js",
  11. "files": [
  12. "src"
  13. ],
  14. "scripts": {
  15. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  16. "tsc": "tsc -p tsconfig.build.json",
  17. "tsc:w": "yarn tsc -w",
  18. "lint:js": "eslint **/*.{js,jsx}",
  19. "lint:styles": "stylelint src/**/*.scss",
  20. "lint": "run-p lint:*",
  21. "test": ""
  22. },
  23. "dependencies": {
  24. "growi-commons": "^5.0.4",
  25. "react-images": "~1.0.0",
  26. "react-motion": "^0.5.2"
  27. },
  28. "devDependencies": {
  29. "npm-run-all": "^4.1.5",
  30. "prettier-stylelint": "^0.4.2",
  31. "react": "^16.4.1",
  32. "react-dom": "^16.4.1"
  33. }
  34. }