storybook-addon-angular-ivy
Version:
This addon enables Ivy for @storybook/angular and is meant as a preview before it gets integrated into @storybook/angular itself.
73 lines (72 loc) • 2.1 kB
JSON
{
"name": "storybook-addon-angular-ivy",
"version": "0.0.1",
"description": "This addon enables Ivy for @storybook/angular and is meant as a preview before it gets integrated into @storybook/angular itself.",
"keywords": [
"storybook-addons",
"angular",
"ivy"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/addon-angular-ivy"
},
"author": "Kai Roeder",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"start": "concurrently \"npm run storybook -- --no-manager-cache --quiet\" \"npm run build -- --watch\"",
"build-storybook": "build-storybook",
"prerelease": "node check-metadata.js",
"release": "npm run build && auto shipit"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.9",
"@angular/animations": "~11.2.10",
"@angular/cli": "~11.2.9",
"@angular/common": "~11.2.10",
"@angular/compiler": "~11.2.10",
"@angular/compiler-cli": "~11.2.10",
"@angular/core": "~11.2.10",
"@angular/forms": "~11.2.10",
"@angular/platform-browser": "~11.2.10",
"@angular/platform-browser-dynamic": "~11.2.10",
"@angular/router": "~11.2.10",
"@babel/core": "^7.12.3",
"@storybook/angular": "^6.2.8",
"auto": "^10.3.0",
"babel-loader": "^8.1.0",
"chalk": "^2.4.2",
"concurrently": "^5.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"rxjs": "~6.6.7",
"ts-node": "^8.3.0",
"tslib": "^2.2.0",
"typescript": "~4.1.5",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"@storybook/addons": ">= 6.3.0-alpha.11"
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Addon Angular Ivy",
"supportedFrameworks": [
"angular"
],
"icon": "https://angular.io/generated/images/marketing/concept-icons/compiler.png"
}
}