-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.39 KB
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
{
"name": "client",
"version": "1.59.0",
"private": true,
"type": "module",
"proxy": "http://localhost:3011",
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"@mui/x-date-pickers": "^5.0.20",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.20",
"@types/node": "^20.19.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-transition-group": "^4.4.12",
"axios": "^1.12.0",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.11.1",
"react-swipeable": "^7.0.1",
"react-transition-group": "^4.4.5",
"typescript": "5.9.3"
},
"scripts": {
"postinstall": "npx msw init public/ --save",
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev",
"build-storybook": "storybook build",
"lint": "eslint src/. --ext .ts,.tsx",
"lint:ts": "npx tsc --noEmit",
"test": "jest --config jest.config.cjs",
"test:coverage": "jest --config jest.config.cjs --coverage",
"test:watch": "jest --config jest.config.cjs --watch"
},
"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-a11y": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@storybook/react": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.3",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.2.0",
"jest-transform-stub": "^2.0.0",
"msw": "^2.12.7",
"msw-storybook-addon": "^2.0.6",
"storybook": "^10.1.11",
"ts-node": "^10.9.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"overrides": {
"jsdom": {
"form-data": "^3.0.4"
}
}
}