-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "my-image-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"react-router-dom": "^7.8.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/ui": "^3.2.4",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^6.0.0-rc.2",
"eslint-plugin-react-refresh": "^0.4.20",
"fake-indexeddb": "^6.2.2",
"globals": "^16.3.0",
"husky": "^8.0.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "~5.9.0",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
}
}