storybook/package.json

130 lines
3.9 KiB
JSON
Raw Normal View History

2017-03-29 21:41:55 +02:00
{
2017-09-07 00:55:44 +03:00
"private": true,
2017-04-05 22:22:21 +02:00
"name": "storybook",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/storybooks/storybook.git"
},
2017-09-07 00:55:44 +03:00
"workspaces": [
"addons/*",
"app/*",
"lib/*",
"examples/cra-kitchen-sink",
"examples/vue-kitchen-sink"
],
2017-06-01 08:11:38 +02:00
"scripts": {
"bootstrap": "./scripts/bootstrap.js",
2017-09-07 00:55:44 +03:00
"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",
2017-06-01 08:11:38 +02:00
"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",
2017-06-01 08:11:38 +02:00
"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",
2017-08-18 03:27:55 +03:00
"lint": "npm run lint:js . && npm run lint:md .",
"lint:js": "eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json",
"lint:md": "remark",
2017-06-01 08:11:38 +02:00
"publish": "lerna publish",
2017-08-28 15:15:37 +02:00
"test": "./scripts/test.js"
2017-06-01 08:11:38 +02:00
},
2017-03-29 21:41:55 +02:00
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
2017-05-26 09:36:45 +02:00
"babel-eslint": "^7.2.3",
"babel-plugin-transform-md-import-to-string": "^1.0.6",
2017-04-27 23:41:50 +02:00
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
2017-07-25 11:20:08 +02:00
"babel-preset-env": "^1.6.0",
2017-05-09 22:29:57 +02:00
"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",
2017-07-25 11:20:08 +02:00
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
2017-07-25 11:20:08 +02:00
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.4.0",
2017-07-25 11:20:08 +02:00
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-json": "^1.2.0",
2017-07-25 11:20:08 +02:00
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"fs-extra": "^4.0.1",
2017-05-26 09:36:45 +02:00
"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",
2017-09-06 20:57:31 +02:00
"lint-staged": "^4.1.2",
"lodash": "^4.17.4",
"nodemon": "^1.12.0",
"npmlog": "^4.1.2",
"prettier": "^1.6.1",
2017-07-25 11:20:08 +02:00
"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",
2017-05-26 01:07:26 +02:00
"remark-lint-code": "^2.0.0",
"remark-lint-code-eslint": "^2.0.0",
"remark-preset-lint-recommended": "^3.0.1",
2017-07-25 11:20:08 +02:00
"remark-toc": "^4.0.1",
"shelljs": "^0.7.8",
"symlink-dir": "^1.1.0"
2017-03-29 23:04:33 +02:00
},
"engines": {
2017-09-07 00:55:44 +03:00
"node": "^8.0.0",
"yarn": "^1.0.0-0"
},
2017-05-18 13:19:37 -07:00
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
2017-06-01 08:11:38 +02:00
"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
2017-06-01 08:11:38 +02:00
},
"pr-log": {
"skipLabels": [
"cleanup"
],
"validLabels": {
"breaking": "Breaking Changes",
"feature": "Features",
"bug": "Bug Fixes",
"documentation": "Documentation",
"maintenance": "Maintenance",
"greenkeeper": "Dependency Upgrades",
"other": "Other"
}
2017-03-29 21:41:55 +02:00
}
2017-05-20 20:55:07 +02:00
}