-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "seminar-2024-frontend-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"types:check": "tsc",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"unused:check": "knip",
"check-all": "yarn types:check && yarn format:check && yarn lint:check && yarn unused:check"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"axios": "1.7.9",
"dayjs": "1.11.13",
"lucide-react": "0.469.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "7.1.1"
},
"devDependencies": {
"@types/node": "22.7.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"@woohm402/eslint-config-react": "0.8.0",
"autoprefixer": "10.4.20",
"eslint": "9.12.0",
"knip": "5.33.3",
"postcss": "8.4.49",
"prettier": "3.3.3",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "^5.0.12"
},
"packageManager": "[email protected]"
}