-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 939 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 939 Bytes
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
{
"name": "material-ui-vite-ts",
"private": true,
"version": "5.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "tsc && vite build",
"preview": "vite preview --port 5300",
"start": "tsc && vite build && serve -s ./dist -p 8080"
},
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"http-server": "^14.1.1",
"react": "latest",
"react-dom": "latest",
"react-error-boundary": "^4.0.12",
"react-media-recorder": "^1.6.6",
"react-router-dom": "^6.21.0",
"serve": "^14.2.1",
"sweetalert2": "^11.7.31"
},
"devDependencies": {
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"typescript": "latest",
"vite": "latest",
"vitest": "^0.34.6"
}
}