-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.7 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "json-form-schema-react",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/pietrop/json-form-schema-design-pattern"
},
"bugs": {
"url": "https://github.com/pietrop/json-form-schema-design-pattern/issues"
},
"license": "MIT",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"jsdoc-to-markdown": "^8.0.0",
"mdx-mermaid": "^1.3.2",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6007",
"storybook-docs": "start-storybook -p 6006 --docs --no-manager-cache",
"build-storybook": "build-storybook",
"build-storybook-docs": "build-storybook --docs ",
"init-msw": "msw init public/",
"deploy:ghpages": "yarn build-storybook --docs && cp .nojekyll storybook-static/.nojekyll && gh-pages -d storybook-static"
},
"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.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-interactions": "^6.5.7",
"@storybook/addon-links": "^6.5.7",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.7",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.7",
"@storybook/node-logger": "^6.5.7",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.7",
"@storybook/testing-library": "^0.0.11",
"@typescript-eslint/parser": "^5.56.0",
"babel-plugin-named-exports-order": "^0.0.2",
"documentation": "^14.0.1",
"gh-pages": "^5.0.0",
"glob": "^9.3.0",
"is-glob": "^4.0.3",
"msw": "^0.42.0",
"msw-storybook-addon": "^1.6.3",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react-json-view": "^1.21.3",
"schema-utils": "^4.0.0",
"storybook-code-panel": "^0.2.1",
"storybook-dark-mode": "^2.1.1",
"storybook-loader": "^0.1.4",
"webpack": "^5.73.0"
}
}