-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 KB
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
63
64
65
{
"name": "script-analyzer",
"private": true,
"version": "0.0.0",
"type": "module",
"proxy": "http://localhost:8080/",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:production": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint ."
]
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.0",
"@mui/material": "^7.3.0",
"@mui/styled-engine-sc": "^7.3.0",
"@react-oauth/google": "^0.12.2",
"@tailwindcss/vite": "^4.1.11",
"@types/js-cookie": "^3.0.6",
"framer-motion": "^12.23.12",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.542.0",
"path": "^0.12.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.7.1",
"react-spinners": "^0.17.0",
"serve": "^14.2.4",
"styled-components": "^6.1.19",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.2.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.2",
"eslint": "^9.30.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4"
}
}