mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "@nextui-org/storybook",
|
|
"version": "2.0.0-beta.1",
|
|
"description": "The NextUI react components storybook ",
|
|
"keywords": [
|
|
"storybook"
|
|
],
|
|
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
"homepage": "https://nextui.org",
|
|
"license": "MIT",
|
|
"main": "src/index.ts",
|
|
"sideEffects": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nextui-org/nextui.git",
|
|
"directory": "packages/components/storybook"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nextui-org/nextui/issues"
|
|
},
|
|
"scripts": {
|
|
"storybook": "concurrently \"pnpm watch:css\" \"pnpm watch:storybook\"",
|
|
"build-storybook": "concurrently \"pnpm:build:*\"",
|
|
"build:css": "npx tailwindcss -i ./.storybook/style.css -o ./public/tailwind.css",
|
|
"build:storybook": "build-storybook build",
|
|
"watch:css": "npx tailwindcss -i ./.storybook/style.css -o ./public/tailwind.css --watch",
|
|
"watch:storybook": "start-storybook dev -p 6006",
|
|
"start:storybook": "pnpx http-server storybook-static"
|
|
},
|
|
"dependencies": {
|
|
"@nextui-org/theme": "workspace:*",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.0",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@babel/preset-react": "^7.18.6",
|
|
"@babel/preset-typescript": "^7.21.0",
|
|
"@storybook/addon-a11y": "^6.5.16",
|
|
"@storybook/addon-actions": "^6.5.16",
|
|
"@storybook/addon-docs": "^6.5.16",
|
|
"@storybook/addon-essentials": "^6.5.16",
|
|
"@storybook/addon-interactions": "^6.5.16",
|
|
"@storybook/addon-links": "^6.5.16",
|
|
"@storybook/addon-postcss": "^2.0.0",
|
|
"@storybook/addon-storysource": "^6.5.16",
|
|
"@storybook/addons": "^6.5.16",
|
|
"@storybook/builder-webpack5": "^6.5.16",
|
|
"@storybook/manager-webpack5": "^6.5.16",
|
|
"@storybook/react": "^6.5.16",
|
|
"@storybook/theming": "^6.5.16",
|
|
"autoprefixer": "^10.4.13",
|
|
"babel-loader": "^8.3.0",
|
|
"concurrently": "^7.6.0",
|
|
"postcss": "^8.4.21",
|
|
"storybook-dark-mode": "^2.1.1",
|
|
"tailwindcss": "^3.2.7"
|
|
},
|
|
"tsup": {
|
|
"clean": true,
|
|
"target": "es2019",
|
|
"format": [
|
|
"cjs",
|
|
"esm"
|
|
]
|
|
}
|
|
}
|