-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "react-a11y-exercise",
"description": "This project is a hands-on exercise for improving accessibility in React applications.",
"author": {
"name": "Amirhossein Alibakhshi",
"email": "amirhosseinalibakhshi@gmail.com",
"url": "https://amirhosseinalibakhshi.com"
},
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint --color --cache --config eslint.config.js --cache-location .eslintcache",
"preview": "vite preview"
},
"dependencies": {
"@tabler/icons-react": "^3.34.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"globals": "^16.0.0",
"typescript": "~5.8.3",
"@eslint/js": "^9.28.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"typescript-eslint": "^8.33.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.4.1",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"vite": "^6.3.5"
}
}