-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "admin-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:production": "tsc -b && vite build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint ."
]
},
"dependencies": {
"@mui/icons-material": "^7.3.0",
"@mui/material": "^7.3.0",
"@mui/styled-engine-sc": "^7.3.0",
"@react-oauth/google": "^0.12.2",
"@storybook/react": "^10.3.6",
"@tailwindcss/vite": "^4.2.4",
"@types/js-cookie": "^3.0.6",
"@vitejs/plugin-react-swc": "^4.3.0",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"generate:api": "openapi-typescript http://localhost:8080/v3/api-docs -o src/api/generated/types.ts",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.542.0",
"path": "^0.12.7",
"piexifjs": "^1.0.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.5.0",
"react-router-dom": "^7.7.1",
"styled-components": "^6.2.0",
"tailwindcss": "^4.2.4",
"vite-plugin-remove-console": "^2.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/js": "^9.39.4",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-onboarding": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@swc/plugin-styled-components": "^12.3.0",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.3.6",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"openapi-typescript": "^7.13.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"storybook": "^10.3.6",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.9",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
}
}