-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "template-react-vite-ts",
"private": true,
"version": "0.0.0",
"author": "Philipp Alber",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"compile": "tsc",
"build": "tsc && vite build",
"test": "vitest --config ./vitest.config.ts --reporter=junit --reporter=basic",
"test:e2e": "playwright test",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"lint": "eslint --max-warnings 0 --ext .js,.ts,.tsx src/ ",
"prettier-check": "prettier --check ./src/**/*.{ts,tsx,js,jsx}",
"prettier-write": "prettier --write ./src/**/*.{ts,tsx,js,jsx}"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/system": "^5.15.0",
"@mui/x-date-pickers": "^7.1.0",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"react": "^18.2.0",
"react-dark-mode-toggle-2": "^2.0.9",
"react-dom": "^18.2.0",
"react-loader-spinner": "^6.1.6",
"react-query": "^3.39.3",
"react-router-dom": "^6.22.3",
"react-share": "^5.1.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@testing-library/react": "^14.2.2",
"@types/node": "^20.12.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^1.4.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-testing-library": "^6.2.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.2.2"
}
}