forked from Lani/vite-2.7-slow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 882 Bytes
/
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
{
"name": "vite-default",
"version": "0.0.0",
"scripts": {
"dev": "rm -rf ./node_modules/.vite/deps && vite --profile --force",
"build": "tsc && vite build",
"serve": "serve -S ./dist",
"test": " playwright test perf.spec.ts "
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.2.3",
"@mui/styles": "^5.2.3",
"@mui/system": "^5.2.3",
"playwright": "^1.32.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@playwright/test": "^1.32.1",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react": "^1.1.0",
"serve": "^13.0.2",
"typescript": "^4.5.2",
"vite": "^4.0.0"
},
"pnpm": {
"overrides": {
"vite": "link:../../vite/packages/vite"
}
}
}