-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "storybook-deploy",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"description": "Testing SB deploy workflow action",
"repository": "git@github.com:jpblancoder/storybook-deploy.git",
"license": "UNLICENSED",
"scripts": {
"build": "run-s svg:build plugins:build",
"sb:build": "storybook build --docs -o ./docs",
"sb:clean": "rimraf ./docs",
"sb:preview": "npm run sb:build && npm run sb:serve",
"sb:serve": "npx http-server ./docs",
"sb": "storybook dev --docs -p 6006"
},
"devDependencies": {
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.18.6",
"@storybook/addon-essentials": "7.0.11",
"@storybook/addon-interactions": "7.0.11",
"@storybook/addon-links": "7.0.11",
"@storybook/blocks": "7.0.11",
"@storybook/react": "7.0.11",
"@storybook/react-webpack5": "7.0.11",
"@storybook/testing-library": "^0.0.14-next.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.0",
"storybook": "7.0.11"
},
"dependencies": {}
}