-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 2.04 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
{
"name": "@bequestinc/wui",
"license": "MIT",
"version": "5.2.9",
"author": "Bequest, Inc.",
"private": false,
"main": "dist/wui.umd.js",
"module": "dist/wui.es.js",
"exports": {
".": {
"import": "./dist/wui.es.js",
"require": "./dist/wui.umd.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0 <=21.6.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "vite build",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/react": "^6.5.15",
"@vitejs/plugin-react": "^3.0.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.1",
"prettier": "^2.8.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"vite": "3.1.0",
"@mui/x-date-pickers": "^6.19.0"
},
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.11.5",
"@mui/x-date-pickers": "^6.19.0",
"react": "^18.0.0",
"react-hot-toast": "^2.4.1",
"react-dom": "^18.0.0"
},
"dependencies": {
"deepmerge": "4.2.2",
"tss-react": "4.5.2",
"material-react-table": "2.13.3"
}
}