-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "vite-ts-react",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint ./src",
"test": "vitest run",
"test:dev": "vitest",
"coverage": "vitest run --coverage",
"cypress:open": "npx cypress open --e2e --browser electron",
"cypress": "npx cypress run --e2e",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"swr": "^2.0.3"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.28.5",
"cypress": "^12.6.0",
"eslint": "^8.34.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.28.5"
}
}