storybook/package.json

84 lines
2.5 KiB
JSON
Raw Normal View History

2017-03-29 21:41:55 +02:00
{
2017-04-05 22:22:21 +02:00
"name": "storybook",
"repository": {
"type": "git",
"url": "git@github.com:storybooks/storybook.git"
},
2017-03-29 21:41:55 +02:00
"devDependencies": {
2017-05-09 22:29:57 +02:00
"babel-cli": "^6.24.1",
2017-04-27 23:41:50 +02:00
"babel-core": "^6.24.1",
2017-05-26 09:36:45 +02:00
"babel-eslint": "^7.2.3",
2017-04-27 23:41:50 +02:00
"babel-plugin-transform-runtime": "^6.23.0",
2017-05-09 22:29:57 +02:00
"babel-polyfill": "^6.23.0",
2017-05-26 09:36:45 +02:00
"babel-preset-env": "^1.5.1",
2017-05-09 22:29:57 +02:00
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
2017-05-31 08:53:19 +02:00
"chalk": "^1.1.3",
2017-05-26 09:36:45 +02:00
"codecov": "^2.2.0",
2017-04-14 15:36:32 +02:00
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
2017-05-31 08:29:09 +02:00
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.1.1",
2017-05-26 09:36:45 +02:00
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
2017-05-31 08:29:09 +02:00
"eslint-plugin-jsx-a11y": "^5.0.3",
2017-05-26 09:36:45 +02:00
"eslint-plugin-prettier": "^2.1.1",
2017-05-31 08:29:09 +02:00
"eslint-plugin-react": "^7.0.1",
2017-05-26 09:36:45 +02:00
"gh-pages": "^1.0.0",
"github-release-from-changelog": "^1.2.1",
2017-05-26 09:36:45 +02:00
"jest": "^20.0.4",
"jest-enzyme": "^3.2.0",
"lerna": "2.0.0-rc.5",
2017-05-26 01:07:26 +02:00
"markdown-it-anchor": "^4.0.0",
"markdownlint-cli": "^0.3.1",
2017-05-26 09:36:45 +02:00
"prettier": "^1.3.1",
2017-04-14 15:36:32 +02:00
"react": "^15.5.4",
"react-dom": "^15.5.4",
2017-05-26 11:21:46 +02:00
"react-test-renderer": "^15.5.4",
2017-05-26 01:07:26 +02:00
"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",
2017-05-26 11:21:46 +02:00
"remark-toc": "^4.0.0",
"shelljs": "^0.7.7"
2017-03-29 23:04:33 +02:00
},
"scripts": {
"changelog": "pr-log --sloppy",
"github-release": "github-release-from-changelog",
2017-05-20 20:55:07 +02:00
"publish": "lerna publish",
2017-05-25 22:45:08 +02:00
"import-repo": "lerna import",
"bootstrap": "lerna bootstrap",
2017-05-26 15:08:38 +02:00
"bootstrap:test-cra": "lerna exec --scope test-cra -- npm i",
"bootstrap:docs": "cd docs && npm i",
2017-05-26 01:07:26 +02:00
"lint": "npm run lint:js && npm run lint:markdown",
2017-05-26 14:10:52 +02:00
"lint:js": "eslint . --cache --cache-location=.cache/eslint/main --ext .js,.jsx",
2017-05-26 11:21:46 +02:00
"lint:markdown": "remark .",
"test": "jest",
2017-04-16 15:01:17 +02:00
"test:watch": "npm test -- --watch",
2017-05-18 13:19:37 -07:00
"coverage": "codecov",
2017-05-26 14:02:54 +02:00
"docs:build": "cd docs && npm run build",
"docs:deploy:manual": "cd docs && npm run deploy:manual",
"docs:deploy:ci": "cd docs && npm run deploy:ci",
"docs:dev": "cd docs && npm run dev"
2017-05-18 13:19:37 -07:00
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"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
}