Guest User

Untitled

a guest
Nov 24th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. {
  2. "name": "cra-lib",
  3. "version": "0.1.0",
  4. "private": false,
  5. "author": {
  6. "name": "Stokedbits"
  7. },
  8. "main": "build/lib/components/index.js",
  9. "types": "build/lib/components/index.d.ts",
  10. "engines": {
  11. "node": ">=8.0.0"
  12. },
  13. "dependencies": {
  14. "@types/enzyme": "^3.1.3",
  15. "@types/enzyme-adapter-react-16": "^1.0.1",
  16. "bootstrap": "^4.0.0-beta.2",
  17. "enzyme": "^3.1.1",
  18. "enzyme-adapter-react-16": "^1.0.4",
  19. "react": "^16.1.0",
  20. "react-docgen-typescript": "^1.1.0",
  21. "react-dom": "^16.1.0"
  22. },
  23. "scripts": {
  24. "start:js": "react-scripts-ts start",
  25. "start": "npm-run-all -p watch:sass:to:css start:js",
  26. "build:js": "react-scripts-ts build",
  27. "build": "npm-run-all build:sass:to:css build:js",
  28. "build:lib": "tsc && npm build && npm run build:sass:to:css && npm run copy:css:to:lib",
  29. "test": "react-scripts-ts test --env=jsdom",
  30. "eject": "react-scripts-ts eject",
  31. "styleguide": "npm-run-all -p watch:sass:to:css styleguidist",
  32. "styleguidist": "styleguidist server",
  33. "styleguide:build": "styleguidist build",
  34. "deploy:docs": "npm run styleguide:build && gh-pages -d styleguide",
  35. "copy:css:to:lib": "npm run copy:base:css && npm run copy:component:css",
  36. "copy:base:css": "cpx \"./src/**/*.css\" ./build/lib/",
  37. "copy:component:css": "cpx \"./src/components/**/*.css\" ./build/lib/components",
  38. "build:sass:to:css": "node-sass-chokidar src/ -o src/",
  39. "watch:sass:to:css": "node-sass-chokidar src/ -o src/ --watch --recursive"
  40. },
  41. "devDependencies": {
  42. "@types/jest": "^21.1.5",
  43. "@types/node": "^8.0.50",
  44. "@types/react": "^16.0.22",
  45. "@types/react-dom": "^16.0.3",
  46. "node-sass-chokidar": "0.0.3",
  47. "npm-run-all": "^4.1.2",
  48. "react-scripts-ts": "^2.8.0",
  49. "react-styleguidist": "^6.0.33"
  50. },
  51. "files": [
  52. "build/lib"
  53. ]
  54. }
Add Comment
Please, Sign In to add comment