-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src",
"prettier": "prettier --config .prettierrc --check \"src/**/*.{j,t}s{,x}\" --write",
"lint:fix": "npm run lint -- --fix",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.14.19",
"@mui/lab": "^5.0.0-alpha.162",
"@mui/material": "^5.11.0",
"@mui/x-data-grid": "^6.18.2",
"@types/file-saver": "^2.0.7",
"date-fns": "^3.6.0",
"docx": "^8.5.0",
"file-saver": "^2.0.5",
"formik": "^2.4.5",
"formik-mui": "^5.0.0-alpha.0",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.11.1",
"react-router-dom": "^6.11.1",
"react-use": "^17.4.0",
"uuid": "^9.0.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.1.1",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"volta": {
"node": "18.20.4"
}
}