package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "react-docgen-typescript-loader",
  3. "version": "3.7.2",
  4. "description": "Webpack loader to generate docgen information from TypeScript React components.",
  5. "keywords": [
  6. "storybook",
  7. "react",
  8. "docgen",
  9. "typescript",
  10. "webpack",
  11. "loader"
  12. ],
  13. "homepage": "https://github.com/strothj/react-docgen-typescript-loader",
  14. "bugs": "https://github.com/strothj/react-docgen-typescript-loader/issues",
  15. "repository": "https://github.com/strothj/react-docgen-typescript-loader.git",
  16. "author": "strothj (https://github.com/strothj)",
  17. "main": "dist/index.js",
  18. "license": "MIT",
  19. "files": [
  20. "dist/*"
  21. ],
  22. "precommit": [
  23. "lint",
  24. "test",
  25. "clean",
  26. "build"
  27. ],
  28. "scripts": {
  29. "start": "tsc -p ./tsconfig.build.json -w",
  30. "build": "tsc -p ./tsconfig.build.json",
  31. "clean": "rimraf dist",
  32. "test": "jest",
  33. "lint": "tslint -p ./"
  34. },
  35. "dependencies": {
  36. "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
  37. "loader-utils": "^1.2.3",
  38. "react-docgen-typescript": "^1.15.0"
  39. },
  40. "peerDependencies": {
  41. "typescript": "*"
  42. },
  43. "devDependencies": {
  44. "@babel/core": "^7.5.5",
  45. "@babel/plugin-transform-modules-commonjs": "^7.5.0",
  46. "@babel/preset-typescript": "^7.3.3",
  47. "@types/jest": "^24.0.18",
  48. "@types/memory-fs": "^0.3.2",
  49. "@types/node": "^12.7.3",
  50. "@types/react": "^16.9.2",
  51. "@types/webpack": "^4.39.1",
  52. "jest": "^24.9.0",
  53. "memory-fs": "^0.4.1",
  54. "pre-commit": "^1.2.2",
  55. "prettier": "^1.18.2",
  56. "react": "^16.9.0",
  57. "rimraf": "^3.0.0",
  58. "ts-loader": "^6.0.4",
  59. "tslint": "^5.19.0",
  60. "tslint-config-airbnb": "^5.11.0",
  61. "tslint-config-prettier": "^1.13.0",
  62. "tslint-plugin-prettier": "^2.0.0",
  63. "typescript": "^3.6.2",
  64. "webpack": "^4.39.3"
  65. }
  66. }