Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. "scripts": {
  2. "start": "npm run storybook",
  3. "storybook": "start-storybook -p 6006",
  4. "prebuild": "rimraf dist dist-es6",
  5. "build": "npm build:es5 && npm build:es6",
  6. "build:es5": "babel components --out-dir dist --plugins=transform-es2015-modules-commonjs --source-maps inline",
  7. "build:es6": "babel components --out-dir dist-es6 --source-maps inline",
  8. "buildstorybook": "build-storybook -c .storybook -o build",
  9. "lint": "eslint ./components --color",
  10. "test": "storyshots",
  11. "postinstall": "postinstall-build --only-as-dependency dist",
  12. "preclean": "rimraf node_modules",
  13. "clean": "npm cache clean && npm install"
  14. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement