{ "name": "storybook", "repository": { "type": "git", "url": "https://github.com/storybooks/storybook.git" }, "scripts": { "bootstrap": "lerna bootstrap", "bootstrap:docs": "cd docs && npmc install", "bootstrap:test-cra": "npm run build-packs && lerna exec --scope test-cra -- npmc install", "bootstrap:react-native-vanilla": "lerna exec --scope react-native-vanilla -- npmc install", "build-packs": "lerna exec --scope '@storybook/*' --parallel -- ../../scripts/build-pack.sh ../../packs", "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", "import-repo": "lerna import", "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": "jest --projects ./ ./examples/react-native-vanilla" }, "engines": { "node": "node" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-core": "^6.24.1", "babel-eslint": "^7.2.3", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.23.0", "babel-preset-env": "^1.5.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "chalk": "^2.0.1", "codecov": "^2.2.0", "danger": "^1.0.0", "enzyme": "^2.8.2", "eslint": "^3.19.0", "eslint-config-airbnb": "^15.0.1", "eslint-config-prettier": "^2.1.1", "eslint-plugin-import": "^2.3.0", "eslint-plugin-jest": "^20.0.3", "eslint-plugin-json": "^1.2.0", "eslint-plugin-jsx-a11y": "^5.0.3", "eslint-plugin-prettier": "^2.1.1", "eslint-plugin-react": "^7.0.1", "gh-pages": "^1.0.0", "github-release-from-changelog": "^1.2.1", "husky": "^0.14.3", "jest": "^20.0.4", "jest-enzyme": "^3.2.0", "lerna": "2.0.0", "lint-staged": "^4.0.0", "nodemon": "^1.11.0", "npmc": "^5.0.3-canary.12", "prettier": "^1.5.2", "react": "^15.5.4", "react-dom": "^15.5.4", "react-test-renderer": "^15.5.4", "remark-cli": "^3.0.1", "remark-lint": "^6.0.0", "remark-lint-code": "^2.0.0", "remark-lint-code-eslint": "^2.0.0", "remark-preset-lint-recommended": "^2.0.0", "remark-toc": "^4.0.0", "shelljs": "^0.7.7" }, "collective": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "lint-staged": { "*.js": [ "npm run lint:js -- --fix", "git add" ], "*.md": [ "npm run lint:md -- -o", "git add" ] }, "pr-log": { "skipLabels": [ "cleanup" ], "validLabels": { "breaking": "Breaking Changes", "feature": "Features", "bug": "Bug Fixes", "documentation": "Documentation", "maintenance": "Maintenance", "greenkeeper": "Dependency Upgrades", "other": "Other" } } }