{ "private": true, "name": "storybook", "version": "3.0.0", "repository": { "type": "git", "url": "https://github.com/storybooks/storybook.git" }, "workspaces": [ "addons/*", "app/*", "lib/*", "examples/cra-kitchen-sink", "examples/vue-kitchen-sink" ], "scripts": { "bootstrap": "./scripts/bootstrap.js", "bootstrap:core": "yarn && lerna run prepublish && node ./scripts/hoist-internals.js", "bootstrap:docs": "cd docs && yarn install", "bootstrap:react-native-vanilla": "npm --prefix examples/react-native-vanilla install", "bootstrap:crna-kitchen-sink": "npm --prefix examples/crna-kitchen-sink install", "build-packs": "lerna exec --scope '@storybook/*' --parallel -- ../../scripts/build-pack.sh ../../packs", "start": "npm --prefix examples/cra-kitchen-sink run storybook", "changelog": "pr-log --sloppy", "precommit": "lint-staged", "coverage": "codecov", "danger": "danger", "dev": "lerna exec --parallel -- babel src -d dist --ignore tests,__tests__,test.js,stories/,story.jsx --plugins \"transform-runtime\" --copy-files -w", "docs:build": "cd docs && npm run build", "docs:deploy:ci": "cd docs && npm run deploy:ci", "docs:deploy:manual": "cd docs && npm run deploy:manual", "docs:dev": "cd docs && npm run dev", "github-release": "github-release-from-changelog", "lint": "npm run lint:js . && npm run lint:md .", "lint:js": "eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json", "lint:md": "remark", "publish": "lerna publish", "test": "./scripts/test.js" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^7.2.3", "babel-plugin-transform-md-import-to-string": "^1.0.6", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.6.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "chalk": "^2.1.0", "codecov": "^2.3.0", "commander": "^2.11.0", "danger": "^1.2.0", "enzyme": "^2.9.1", "eslint": "^4.6.1", "eslint-config-airbnb": "^15.1.0", "eslint-config-prettier": "^2.4.0", "eslint-plugin-import": "^2.7.0", "eslint-plugin-jest": "^21.0.0", "eslint-plugin-json": "^1.2.0", "eslint-plugin-jsx-a11y": "^6.0.2", "eslint-plugin-prettier": "^2.2.0", "eslint-plugin-react": "^7.3.0", "fs-extra": "^4.0.1", "gh-pages": "^1.0.0", "github-release-from-changelog": "^1.2.1", "glob": "^7.1.2", "husky": "^0.14.3", "inquirer": "^3.2.3", "jest": "^21.0.1", "jest-enzyme": "^3.8.2", "lerna": "^2.1.2", "lint-staged": "^4.1.2", "lodash": "^4.17.4", "nodemon": "^1.12.0", "npmlog": "^4.1.2", "prettier": "^1.6.1", "react": "^15.6.1", "react-dom": "^15.6.1", "react-test-renderer": "^15.6.1", "remark-cli": "^4.0.0", "remark-lint": "^6.0.1", "remark-lint-code": "^2.0.0", "remark-lint-code-eslint": "^2.0.0", "remark-preset-lint-recommended": "^3.0.1", "remark-toc": "^4.0.1", "shelljs": "^0.7.8", "symlink-dir": "^1.1.0" }, "engines": { "node": "^8.0.0", "yarn": "^1.0.0-0" }, "collective": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "lint-staged": { "linters": { "*.js": [ "npm run lint:js -- --fix", "git add" ], "*.json": [ "npm run lint:js -- --fix", "git add" ], "*.md": [ "npm run lint:md -- -o", "git add" ] }, "verbose": true }, "pr-log": { "skipLabels": [ "cleanup" ], "validLabels": { "breaking": "Breaking Changes", "feature": "Features", "bug": "Bug Fixes", "documentation": "Documentation", "maintenance": "Maintenance", "greenkeeper": "Dependency Upgrades", "other": "Other" } } }