2017-03-29 21:41:55 +02:00
{
2017-12-21 08:37:53 +01:00
"name" : "@storybook/root" ,
2020-11-06 09:05:01 +08:00
"version" : "6.1.0-beta.3" ,
2018-08-15 23:16:19 +02:00
"private" : true ,
2019-06-04 15:56:08 +03:00
"description" : "Storybook is an open source tool for developing UI components in isolation for React, Vue and Angular. It makes building stunning UIs organized and efficient." ,
2019-06-05 16:46:17 -07:00
"keywords" : [
"angular" ,
2019-08-29 23:39:48 -05:00
"angularjs" ,
"au2" ,
2019-08-28 15:03:32 -05:00
"aurelia" ,
"aurelia2" ,
2019-06-05 16:46:17 -07:00
"babel" ,
"components" ,
"documentation" ,
"frontend" ,
"jamstack" ,
"markup" ,
2019-12-23 00:40:50 +08:00
"rax" ,
2019-06-05 16:46:17 -07:00
"react" ,
"reactjs" ,
"reuseable" ,
"storybook" ,
"storybookjs" ,
"templated" ,
"tool" ,
"ui" ,
"user interface" ,
"vue" ,
"vuejs"
] ,
2019-06-04 15:56:08 +03:00
"homepage" : "https://storybook.js.org/" ,
2017-05-18 16:44:27 +10:00
"repository" : {
"type" : "git" ,
2019-06-03 11:06:42 -07:00
"url" : "https://github.com/storybookjs/storybook.git"
2017-05-18 16:44:27 +10:00
} ,
2018-08-15 23:16:19 +02:00
"workspaces" : [
"addons/*" ,
"addons/storyshots/*" ,
"app/*" ,
2019-04-26 13:57:21 +02:00
"dev-kits/*" ,
2019-03-16 10:24:12 -04:00
"examples-native/*" ,
2019-04-26 13:57:21 +02:00
"examples/*" ,
"lib/*" ,
2018-08-23 16:34:24 +03:00
"lib/cli/test/run/*"
2018-08-15 23:16:19 +02:00
] ,
2017-06-01 08:11:38 +02:00
"scripts" : {
2019-10-16 14:40:35 +02:00
"await-serve-storybooks" : "wait-on http://localhost:8001" ,
2017-10-24 13:31:13 -05:00
"bootstrap" : "node ./scripts/bootstrap.js" ,
2020-04-07 20:18:10 +02:00
"build" : "node ./scripts/build-package.js" ,
2020-10-08 15:06:43 +02:00
"build-manager" : "node ./scripts/build-manager.js" ,
2018-12-27 01:48:57 +01:00
"build-packs" : "lerna exec --scope '@storybook/*' -- \\$LERNA_ROOT_PATH/scripts/build-pack.sh \\$LERNA_ROOT_PATH/packs" ,
2020-05-09 11:34:50 +02:00
"build-storybooks" : "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true node -r esm ./scripts/build-storybooks.js" ,
2018-11-15 21:16:35 +08:00
"changelog" : "pr-log --sloppy --cherry-pick" ,
2018-11-15 21:56:58 +08:00
"changelog:next" : "pr-log --sloppy --since-prerelease" ,
2017-06-01 08:11:38 +02:00
"coverage" : "codecov" ,
2018-03-17 16:13:43 +03:00
"danger" : "danger" ,
2019-03-03 19:36:15 +01:00
"dev" : "concurrently --kill-others \"yarn dev:tsc\" \"yarn dev:babel\"" ,
2020-05-09 11:34:50 +02:00
"dev:babel" : "lerna exec --scope @storybook/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/utils/watch-babel.js" ,
2019-03-16 19:51:30 +01:00
"dev:check-types" : "tsc --noEmit" ,
2020-05-09 11:34:50 +02:00
"dev:tsc" : "lerna exec --scope @storybook/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/utils/watch-tsc.js" ,
2017-06-01 08:11:38 +02:00
"github-release" : "github-release-from-changelog" ,
2019-04-25 15:00:28 +02:00
"lint" : "yarn lint:js . && yarn lint:md ." ,
2019-04-25 18:25:49 +02:00
"lint:js" : "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives" ,
2018-02-17 19:55:30 +03:00
"lint:md" : "remark -q" ,
2019-03-14 23:27:57 +01:00
"lint:package" : "sort-package-json" ,
2020-05-18 22:29:50 +02:00
"local-registry" : "ts-node --project=./scripts/tsconfig.json ./scripts/run-registry.ts " ,
2019-03-14 23:27:57 +01:00
"publish:debug" : "npm run publish:latest -- --npm-tag=debug --no-push" ,
2019-01-16 12:10:43 +08:00
"publish:latest" : "lerna publish --exact --concurrency 1 --force-publish" ,
"publish:next" : "npm run publish:latest -- --npm-tag=next" ,
2020-05-09 11:34:50 +02:00
"run-chromatics" : "node -r esm ./scripts/run-chromatics.js" ,
2019-10-16 16:11:56 +02:00
"serve-storybooks" : "http-server ./built-storybooks -p 8001" ,
2018-09-09 17:08:38 +02:00
"start" : "yarn --cwd examples/official-storybook storybook" ,
2017-12-14 11:05:35 +02:00
"test" : "node ./scripts/test.js" ,
2019-10-12 12:29:03 +02:00
"test:cli" : "npm --prefix lib/cli run test" ,
2020-05-09 11:34:50 +02:00
"test:e2e" : "cypress run" ,
2020-05-18 22:29:50 +02:00
"test:e2e-framework" : "ts-node --project=./scripts/tsconfig.json ./scripts/run-e2e.ts" ,
2020-05-09 22:13:02 +02:00
"test:e2e-gui" : "concurrently --success first --kill-others \"cypress open\" \"yarn serve-storybooks\""
2017-06-01 08:11:38 +02:00
} ,
2019-03-14 23:27:57 +01:00
"husky" : {
"hooks" : {
"pre-commit" : "yarn lint-staged"
}
} ,
"lint-staged" : {
2020-09-10 09:21:22 +02:00
"*.{html,js,json,jsx,mjs,ts,tsx}" : [
2020-02-04 16:23:49 +11:00
"yarn lint:js --fix"
2019-10-03 11:08:40 +02:00
] ,
"package.json" : [
2020-02-04 16:23:49 +11:00
"yarn lint:package"
2019-10-03 11:08:40 +02:00
]
2019-03-14 23:27:57 +01:00
} ,
"browserslist" : "defaults" ,
2020-03-07 00:13:33 +01:00
"resolutions" : {
2020-03-27 15:28:17 +01:00
"serialize-javascript" : "^3.0.0"
2020-03-07 00:13:33 +01:00
} ,
2017-03-29 21:41:55 +02:00
"devDependencies" : {
2020-10-24 22:47:58 +02:00
"@babel/cli" : "^7.12.1" ,
"@babel/core" : "^7.12.3" ,
"@babel/plugin-proposal-class-properties" : "^7.12.1" ,
"@babel/plugin-proposal-decorators" : "^7.12.1" ,
"@babel/plugin-proposal-export-default-from" : "^7.12.1" ,
"@babel/plugin-proposal-object-rest-spread" : "^7.12.1" ,
"@babel/plugin-proposal-private-methods" : "^7.12.1" ,
2020-09-16 16:45:51 -07:00
"@babel/plugin-syntax-dynamic-import" : "^7.8.3" ,
2020-10-24 22:47:58 +02:00
"@babel/preset-env" : "^7.12.1" ,
"@babel/preset-flow" : "^7.12.1" ,
"@babel/preset-react" : "^7.12.1" ,
"@babel/preset-typescript" : "^7.12.1" ,
"@babel/runtime" : "^7.12.1" ,
2018-11-23 17:02:51 +02:00
"@emotion/snapshot-serializer" : "^0.8.2" ,
2020-11-06 06:46:49 +08:00
"@nicolo-ribaudo/chokidar-2" : "^2.1.8" ,
2020-04-30 17:27:23 +02:00
"@storybook/eslint-config-storybook" : "^2.4.0" ,
"@storybook/linter-config" : "^2.5.0" ,
2020-06-03 18:37:16 +02:00
"@storybook/semver" : "^7.3.2" ,
2020-11-02 23:29:12 +01:00
"@testing-library/dom" : "^7.26.3" ,
"@testing-library/jest-dom" : "^5.11.5" ,
2020-04-30 17:27:23 +02:00
"@testing-library/react" : "^10.0.3" ,
2020-11-02 23:29:12 +01:00
"@testing-library/user-event" : "^12.1.10" ,
2020-05-18 14:58:55 +02:00
"@types/detect-port" : "^1.3.0" ,
2019-10-31 18:27:57 -04:00
"@types/doctrine" : "^0.0.3" ,
"@types/enzyme" : "^3.10.3" ,
2019-11-11 15:29:18 -05:00
"@types/escodegen" : "^0.0.6" ,
2020-05-09 11:34:50 +02:00
"@types/express" : "^4.17.6" ,
2020-09-19 16:27:19 +02:00
"@types/fs-extra" : "^9.0.1" ,
2020-01-30 16:34:54 +01:00
"@types/jest" : "^25.1.1" ,
2020-05-18 14:58:55 +02:00
"@types/js-yaml" : "^3.12.4" ,
2020-04-30 17:27:23 +02:00
"@types/lodash" : "^4.14.150" ,
2020-06-04 13:47:12 +00:00
"@types/node" : "^14.0.10" ,
2020-05-18 14:58:55 +02:00
"@types/node-cleanup" : "^2.1.1" ,
2020-03-27 15:28:17 +01:00
"@types/semver" : "^7.1.0" ,
2020-05-09 11:34:50 +02:00
"@types/serve-static" : "^1.13.3" ,
"@types/shelljs" : "^0.8.7" ,
2020-11-05 09:36:15 +01:00
"@types/webpack" : "^4.41.24" ,
"@types/webpack-env" : "^1.15.3" ,
2018-06-16 20:25:47 +03:00
"babel-core" : "^7.0.0-bridge.0" ,
2018-10-10 22:23:35 +02:00
"babel-eslint" : "^10.0.1" ,
2020-05-08 11:25:52 +08:00
"babel-jest" : "^26.0.0" ,
2019-04-04 19:51:28 +02:00
"babel-loader" : "^8.0.5" ,
2019-02-01 16:12:19 +01:00
"babel-plugin-add-react-displayname" : "^0.0.5" ,
2020-04-30 17:27:23 +02:00
"babel-plugin-dynamic-import-node" : "^2.3.3" ,
2019-10-03 02:43:33 +02:00
"babel-plugin-emotion" : "^10.0.20" ,
2019-11-21 15:15:59 +01:00
"babel-plugin-macros" : "^2.7.0" ,
2018-06-12 21:50:13 +03:00
"babel-plugin-require-context-hook" : "^1.0.0" ,
2020-04-17 22:21:00 +02:00
"chalk" : "^4.0.0" ,
2020-06-24 18:45:36 +02:00
"chromatic" : "^5.0.0" ,
2019-05-18 22:04:17 +02:00
"codecov" : "^3.5.0" ,
2020-04-30 17:27:23 +02:00
"commander" : "^5.1.0" ,
"concurrently" : "^5.2.0" ,
2019-04-26 17:46:58 +02:00
"core-js" : "^3.0.1" ,
2020-01-30 17:02:29 +01:00
"cross-env" : "^7.0.0" ,
2020-04-17 22:21:00 +02:00
"danger" : "^10.1.1" ,
2019-10-03 02:43:33 +02:00
"del" : "^5.1.0" ,
2019-04-26 14:17:30 +02:00
"detect-port" : "^1.3.0" ,
2020-09-20 15:46:28 +02:00
"downlevel-dts" : "^0.6.0" ,
2020-05-09 11:34:50 +02:00
"enquirer" : "^2.3.5" ,
2019-02-24 20:18:19 +01:00
"enzyme" : "^3.9.0" ,
2019-02-07 05:28:30 +00:00
"enzyme-adapter-react-16" : "^1.9.1" ,
2020-04-30 18:09:28 +02:00
"eslint" : "^6.8.0" ,
2020-02-17 11:54:17 +01:00
"eslint-plugin-cypress" : "^2.10.1" ,
2019-10-03 11:30:26 +02:00
"eslint-plugin-react" : "^7.15.1" ,
2020-04-17 22:21:00 +02:00
"eslint-teamcity" : "^3.0.0" ,
2019-05-18 22:04:17 +02:00
"esm" : "^3.2.25" ,
2020-05-09 11:34:50 +02:00
"express" : "^4.17.1" ,
2020-03-27 15:28:17 +01:00
"fs-extra" : "^9.0.0" ,
2019-10-03 02:43:33 +02:00
"github-release-from-changelog" : "^2.1.0" ,
2018-08-27 09:11:56 +02:00
"glob" : "^7.1.3" ,
2020-04-30 17:27:23 +02:00
"http-server" : "^0.12.3" ,
2020-01-17 15:56:57 +05:30
"husky" : "^4.0.10" ,
2019-10-01 06:31:15 +00:00
"inquirer" : "^7.0.0" ,
2020-05-07 14:36:11 +08:00
"jest" : "^26.0.0" ,
2020-05-04 21:10:19 +02:00
"jest-cli" : "^26.0.0" ,
"jest-config" : "^26.0.0" ,
"jest-diff" : "^26.0.0" ,
2019-09-24 16:57:00 +02:00
"jest-emotion" : "^10.0.17" ,
2020-05-04 21:10:19 +02:00
"jest-environment-jsdom" : "^26.0.0" ,
2019-04-04 19:51:28 +02:00
"jest-environment-jsdom-thirteen" : "^1.0.1" ,
2019-03-15 13:19:21 +00:00
"jest-enzyme" : "^7.0.2" ,
2020-07-08 10:51:16 +00:00
"jest-image-snapshot" : "^4.0.2" ,
2020-05-04 21:10:19 +02:00
"jest-jasmine2" : "^26.0.0" ,
"jest-matcher-utils" : "^26.0.0" ,
2018-08-28 08:03:50 +02:00
"jest-raw-loader" : "^1.0.1" ,
2020-01-11 10:37:12 +01:00
"jest-serializer-html" : "^7.0.0" ,
2020-03-05 19:12:22 +01:00
"jest-teamcity" : "^1.7.0" ,
2020-04-17 22:21:00 +02:00
"jest-watch-typeahead" : "^0.5.0" ,
2020-05-09 11:34:50 +02:00
"js-yaml" : "^3.13.1" ,
2019-11-21 15:15:59 +01:00
"lerna" : "^3.19.0" ,
2020-04-30 17:27:23 +02:00
"lint-staged" : "^10.2.1" ,
2019-10-09 00:30:08 +01:00
"lodash" : "^4.17.15" ,
2020-02-22 23:48:54 +01:00
"mocha-list-tests" : "^1.0.2" ,
2019-04-26 14:17:30 +02:00
"node-cleanup" : "^2.1.2" ,
2019-05-18 22:04:17 +02:00
"node-fetch" : "^2.6.0" ,
2020-04-30 17:27:23 +02:00
"node-sass" : "^4.14.0" ,
2017-07-19 23:26:21 +02:00
"npmlog" : "^4.1.2" ,
2020-05-09 11:34:50 +02:00
"p-limit" : "^2.3.0" ,
2020-08-25 00:17:22 +04:00
"prettier" : "~2.0.5" ,
2017-10-02 16:22:58 +00:00
"raf" : "^3.4.0" ,
2019-09-11 00:59:37 +02:00
"recursive-copy" : "^2.0.10" ,
2020-10-24 22:14:19 +02:00
"regenerator-runtime" : "^0.13.7" ,
2020-10-03 09:01:00 +02:00
"remark" : "^12.0.0" ,
2020-04-17 22:21:00 +02:00
"remark-cli" : "^8.0.0" ,
"remark-lint" : "^7.0.0" ,
"remark-preset-lint-recommended" : "^4.0.0" ,
2019-05-18 22:04:17 +02:00
"riot-jest-transformer" : "^2.0.0" ,
2020-05-09 11:34:50 +02:00
"serve-static" : "^1.14.1" ,
2020-04-30 17:27:23 +02:00
"shelljs" : "^0.8.4" ,
2019-10-15 18:39:12 +02:00
"shx" : "^0.3.2" ,
2020-04-30 17:27:23 +02:00
"sort-package-json" : "^1.42.1" ,
2020-01-30 22:50:13 +01:00
"svelte" : "^3.18.1" ,
2019-10-03 02:43:33 +02:00
"svelte-jest" : "^0.3.0" ,
2020-04-30 17:27:23 +02:00
"teamcity-service-messages" : "^0.1.11" ,
2019-11-21 15:15:59 +01:00
"trash" : "^6.1.1" ,
2020-10-24 21:52:58 +02:00
"ts-dedent" : "^2.0.0" ,
2020-06-04 15:42:06 +00:00
"ts-jest" : "^26.1.0" ,
2020-07-07 21:39:51 +02:00
"ts-node" : "^8.10.2" ,
2020-07-07 21:31:10 +02:00
"typescript" : "^3.9.3" ,
2020-04-08 14:18:07 +02:00
"wait-on" : "^4.0.0" ,
2020-11-05 09:36:15 +01:00
"webpack" : "^4.44.2" ,
2020-04-08 14:18:07 +02:00
"window-size" : "^1.1.1"
2019-10-15 18:39:12 +02:00
} ,
"optionalDependencies" : {
2020-04-17 22:21:00 +02:00
"@cypress/webpack-preprocessor" : "^5.1.2" ,
2020-06-04 11:38:25 +02:00
"cypress" : "4.7.0" ,
2020-05-09 11:34:50 +02:00
"puppeteer" : "^2.0.0" ,
2020-09-19 16:27:19 +02:00
"ts-loader" : "^8.0.4" ,
2020-05-09 11:34:50 +02:00
"verdaccio" : "^4.5.1" ,
"verdaccio-auth-memory" : "^9.4.0"
2018-11-09 09:58:06 +01:00
} ,
2017-06-06 17:45:57 +02:00
"engines" : {
2019-10-15 18:35:32 +03:00
"node" : ">=8.10.0" ,
2018-01-03 22:14:25 -06:00
"yarn" : ">=1.3.2"
2017-06-06 17:45:57 +02:00
} ,
2017-05-18 13:19:37 -07:00
"collective" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/storybook"
2017-05-27 17:16:09 +10:00
} ,
2020-02-16 18:36:01 +01:00
"eslint-teamcity" : {
"reporter" : "inspections"
} ,
2017-05-27 17:16:09 +10:00
"pr-log" : {
2017-05-28 00:51:18 +10:00
"skipLabels" : [
2018-11-25 02:29:16 +09:00
"cleanup" ,
"doc-dependencies:update"
2017-05-28 00:51:18 +10:00
] ,
2018-11-15 21:16:35 +08:00
"validLabels" : [
[
"BREAKING CHANGE" ,
"Breaking Changes"
] ,
[
"feature request" ,
"Features"
] ,
[
"bug" ,
"Bug Fixes"
] ,
[
"documentation" ,
"Documentation"
] ,
[
"maintenance" ,
"Maintenance"
] ,
[
"dependencies:update" ,
"Dependency Upgrades"
] ,
[
"dependencies" ,
"Dependency Upgrades"
] ,
[
"other" ,
"Other"
]
]
2018-08-15 23:16:19 +02:00
}
2020-09-26 20:02:18 +08:00
}