-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
120 lines (120 loc) · 3.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@pubcore/vite-storybook-mui",
"version": "0.27.1",
"description": "Storybook for react components based on MUI",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "npm run lint && vite build",
"watch": "vite build --watch",
"serve": "vite preview",
"prepare": "husky install && npm run build",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev",
"build-storybook": "storybook build",
"lint": "tsc --noEmit && eslint .",
"test": "jest"
},
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.117",
"@mui/material": "^5.11.6",
"i18next": "^22.0.6",
"react": ">= 18.2.0",
"react-dom": ">= 18.2.0",
"react-hook-form": "^7.28.0",
"react-i18next": "^12.0.0",
"react-router-dom": "^6.2.2"
},
"dependencies": {
"@json2csv/plainjs": "^6.1.2",
"@react-hook/mouse-position": "^4.1.3",
"@rjsf/core": "^5.0.0-beta.20",
"@rjsf/mui": "^5.0.0-beta.20",
"@rjsf/utils": "^5.0.0-beta.20",
"@rjsf/validator-ajv8": "^5.0.0-beta.20",
"file-saver": "^2.0.5",
"immutability-helper": "^3.1.1",
"lodash-es": "^4.17.21",
"papaparse": "^5.3.2",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.2",
"react-render-if-visible": "^2.1.1",
"react-resize-detector": "^8.0.3",
"react-use-mouse-position": "^1.0.4",
"react-viewport-list": "^6.3.0",
"reselect": "^4.1.5",
"string-similarity": "^4.0.4",
"string-similarity-js": "^2.1.4",
"throat": "^6.0.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-typescript": "^10.0.1",
"@storybook/addon-actions": "^7.0.0-beta.36",
"@storybook/addon-essentials": "^7.0.0-beta.36",
"@storybook/addon-links": "^7.0.0-beta.36",
"@storybook/cli": "^6.5.16",
"@storybook/react": "^7.0.0-beta.36",
"@storybook/react-vite": "^7.0.0-beta.36",
"@swc/jest": "^0.2.23",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.2.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^18.11.9",
"@types/papaparse": "^5.3.5",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^2.2.0",
"axios": "^1.2.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.4.1",
"storybook": "^7.0.0-beta.36",
"storybook-dark-mode": "^3.0.0-canary.191.4282.0",
"ts-jest": "^29.0.3",
"typescript": "^4.3.2",
"vite": "^3.2.4"
},
"keywords": [
"MUI",
"storybook"
],
"author": "pubcore",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com:pubcore/vite-storybook-mui.git"
}
}