-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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": "vdoc",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . && prettier --check .",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.2.5",
"@mui/icons-material": "^6.4.6",
"@mui/material": "^6.1.10",
"@tanstack/react-query": "^5.66.11",
"@tanstack/react-router": "^1.112.0",
"axios": "^1.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.0",
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.50.1",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@tanstack/router-devtools": "^1.111.3",
"@tanstack/router-plugin": "^1.111.3",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.0.6",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "3.5.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vite-plugin-compression2": "^1.3.3",
"vitest": "^3.0.5"
}
}