-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "gripmock-ui",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"type-check": "tsc --noEmit",
"lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write ./src"
},
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "^10.0.0"
}
},
"dependencies": {
"@microlink/react-json-view": "^1.31.16",
"@mui/material": "^7.3.10",
"@vitejs/plugin-react": "^6.0",
"fuse.js": "^7.3",
"react": "^19.2",
"react-admin": "^5.14",
"react-dom": "^19.2",
"typescript": "^6.0",
"vite": "^8.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react": "^19.2",
"@types/react-dom": "^19.2",
"@typescript-eslint/eslint-plugin": "^8.58",
"@typescript-eslint/parser": "^8.57",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1",
"eslint-plugin-react-hooks": "^7.0",
"globals": "^17.4.0",
"prettier": "^3.8",
"vitest": "^4.1.3"
}
}