-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.66 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
{
"name": "code-proxy-admin",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"pages",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "bun run --filter @code-proxy/admin-panel dev",
"build": "bun run --filter @code-proxy/admin-panel build",
"preview": "bun run --filter @code-proxy/admin-panel preview",
"lint": "oxlint .",
"format": "oxfmt .",
"ci:pr": "./scripts/ci-pr.sh",
"check": "bun run lint && bun run design:check && bun run boundary:imports && bun run size:check && bun run surface:check && bun run audit:deps && bun run build && bun run bundle:diff",
"boundary:imports": "node scripts/check-import-boundaries.mjs",
"bundle:diff": "node scripts/bundle-diff.mjs",
"test": "bun run --filter @code-proxy/admin-panel test",
"test:ci": "bun run --filter @code-proxy/admin-panel test:ci",
"test:watch": "bun run --filter @code-proxy/admin-panel test:watch",
"e2e": "playwright test",
"design:check": "node scripts/check-design-tokens.mjs",
"size:check": "node scripts/check-file-size.mjs",
"surface:check": "node scripts/check-surface-usage.mjs",
"audit:deps": "node scripts/check-dependency-audit.mjs"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-virtual": "^3.13.18",
"echarts": "^6.1.0",
"echarts-for-react": "^3.0.6",
"framer-motion": "^12.34.3",
"goey-toast": "^0.2.2",
"i18next": "^25.7.1",
"lucide-react": "0.563.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^16.4.0",
"react-markdown": "^10.1.0",
"react-router-dom": "7.18.1",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1",
"yaml": "^2.8.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.4.0",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "5.1.4",
"jsdom": "^28.1.0",
"oxfmt": "0.31.0",
"oxlint": "1.46.0",
"sass": "^1.94.2",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"vite": "7.3.6",
"vitest": "^4.1.10"
},
"packageManager": "bun@1.2.2",
"overrides": {
"yaml": "^2.9.0",
"postcss": "^8.5.23",
"nanoid": "^3.3.18",
"undici": "^7.24.0",
"form-data": "^4.0.6",
"immutable": "^5.1.9",
"rollup": "^4.62.2",
"esbuild": "^0.28.1",
"picomatch": "^4.0.5"
}
}