This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
forked from AnimaApp/themed-mui-storybook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.49 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "anima-sample-storybook",
"version": "0.1.0",
"private": true,
"dependencies": {
"@atlaskit/css-reset": "^6.3.13",
"@atlaskit/pagination": "^14.1.6",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.4.4",
"@nextui-org/react": "^1.0.2-beta.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-figma-plugin-ds": "^2.3.0",
"react-scripts": "5.0.0",
"react-spinners": "^0.11.0",
"storybook-anima": "^1.43.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 --no-manager-cache -s public",
"storybook:dev": "rm -rf ./node_modules/.cache && start-storybook -p 6006 --no-manager-cache -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages",
"sync-to-figma": "anima-storybook sync --design-tokens ./design-tokens.json",
"sync": "npm run build-storybook && anima-storybook sync"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^4.0.1",
"@storybook/react": "^6.4.19",
"@storybook/storybook-deployer": "^2.8.10",
"anima-storybook-cli": "^0.4.0",
"babel-plugin-react-docgen": "^4.2.1",
"lodash": "^4.17.21",
"storybook-addon-ghostwriter": "^1.0.0",
"webpack": "^5.67.0"
}
}