-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "log-viewer",
"private": true,
"version": "0.0.0",
"type": "module",
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@tailwindcss/vite": "^4.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"event-loop-yielder": "^3.0.1",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-aria": "^3.30.0",
"react-dom": "^19.2.4",
"react-resizable-panels": "^4.8.0",
"react-virtuoso": "^4.18.3",
"shadcn": "^4.1.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.39.4",
"@rolldown/plugin-babel": "^0.2.2",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.6",
"vitest": "^4.1.4"
},
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite",
"preview": "vite preview",
"check": "npm run check-types && npm run check-lint && npm run check-format",
"check-types": "tsc -b",
"check-lint": "eslint . --max-warnings 0",
"check-format": "prettier --check .",
"fix-format": "prettier --write .",
"fix-lint": "eslint . --fix",
"test": "vitest"
}
}