-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 2.63 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
{
"name": "comfort-react-demo",
"version": "4.2.1",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --port 3245",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.14.16",
"@mui/lab": "5.0.0-alpha.151",
"@mui/material": "5.14.16",
"@mui/utils": "5.14.16",
"@mui/x-date-pickers": "6.17.0",
"@testing-library/jest-dom": "^6.2.1",
"@testing-library/react": "^14.1.2",
"comfort-react": "4.2.1",
"date-fns": "2.30.0",
"jsx-to-string": "1.4.0",
"miragejs": "0.1.48",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "4.4.6",
"react-dropzone": "14.2.3",
"react-helmet-async": "1.3.0",
"react-imask": "7.1.3",
"react-minimal-side-navigation": "1.9.2",
"react-phone-input-2": "2.15.1",
"react-router-dom": "6.18.0",
"web-vitals": "3.5.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-function-bind": "7.22.5",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@vitejs/plugin-react": "4.1.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"vite": "4.5.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.svg$": "jest-svg-transformer",
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}