-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "quent-ui",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=24.11.0",
"pnpm": ">=11.19.0"
},
"packageManager": "pnpm@11.19.0",
"volta": {
"node": "24.11.0",
"pnpm": "11.19.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"bindings": "cargo run --manifest-path ../Cargo.toml --package quent-simulator-ui-bindings",
"predev": "pnpm bindings",
"dev": "vite",
"prestart": "pnpm bindings",
"start": "vite",
"prebuild": "pnpm bindings",
"build": "pnpm ci:build",
"prebuild:app": "pnpm bindings",
"build:app": "pnpm ci:build:app",
"prebuild:packages": "pnpm bindings",
"build:packages": "pnpm --filter '@quent/*' --recursive build:ci",
"ci:build": "pnpm --filter '@quent/*' --recursive build:ci && pnpm ci:build:app",
"ci:build:app": "tsr generate && tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"routes:generate": "tsr generate",
"pretypecheck": "pnpm bindings",
"typecheck": "tsr generate && tsc --noEmit",
"ci:check": "pnpm format:check && pnpm routes:generate && pnpm lint && pnpm typecheck && pnpm test:coverage && pnpm audit --audit-level=high && pnpm test:e2e && pnpm build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"playwright:install": "playwright install",
"preview": "vite preview",
"serve": "vite preview --port 4173",
"stats": "vite build && open stats.html"
},
"dependencies": {
"@quent/client": "workspace:*",
"@quent/components": "workspace:*",
"@quent/hooks": "workspace:*",
"@quent/utils": "workspace:*",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.21",
"@radix-ui/react-hover-card": "^1.1.23",
"@radix-ui/react-navigation-menu": "^1.2.22",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-query": "catalog:",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router": "catalog:",
"@tanstack/react-router-devtools": "^1.166.20",
"@tanstack/react-table": "catalog:",
"@tanstack/react-virtual": "catalog:",
"@xyflow/react": "catalog:",
"class-variance-authority": "^0.7.1",
"clsx": "catalog:",
"echarts": "catalog:",
"echarts-for-react": "catalog:",
"elkjs": "^0.12.0",
"jotai": "catalog:",
"jotai-family": "catalog:",
"lucide-react": "^1.21.0",
"react": "catalog:",
"react-dom": "catalog:",
"react-resizable-panels": "^4.12.2",
"tailwind-merge": "catalog:"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/router-cli": "^1.167.21",
"@tanstack/router-vite-plugin": "^1.166.57",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^27.4.0",
"msw": "^2.15.0",
"prettier": "^3.9.6",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^4.2.1",
"tailwindcss-animate": "^1.0.7",
"tsdown": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "^8.65.0",
"vite": "^7.3.6",
"vitest": "^4.1.9"
}
}