storybook-addon-javascript-toggler
Version:
Storybook addon to toggle javascript in the preview area
68 lines (67 loc) • 2.33 kB
JSON
{
"name": "storybook-addon-javascript-toggler",
"version": "0.1.6",
"description": "Storybook addon to toggle javascript in the preview area",
"main": "dist/index.js",
"repository": "https://github.com/Didask/storybook-addon-javascript-toggler.git",
"author": "Didask ODC Devs (https://github.com/orgs/Didask/teams/odc-devs)",
"license": "MIT",
"keywords": [
"addon",
"storybook",
"js",
"nojs"
],
"chpm": [
"npm"
],
"scripts": {
"clean": "rimraf ./dist",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"prepublish": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/plugin-transform-classes": "^7.10.1",
"@babel/plugin-transform-react-display-name": "^7.10.1",
"@babel/plugin-transform-template-literals": "^7.10.1",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addons": "^5.1.3",
"@storybook/components": "^5.1.3",
"@storybook/core-events": "^5.1.3",
"@storybook/react": "^5.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^7.1.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"prop-types": "^15.7.2",
"react": ">=15.0.0 || ^16.0.0",
"react-dom": "^16.8.6",
"rimraf": "^3.0.2",
"sort-package-json": "^1.44.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"@storybook/react": "^5.0.0",
"react": ">=15.0.0 || ^16.0.0"
}
}