-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "omni-ui",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"dev:internal": "NEXT_PUBLIC_DEPLOY_TARGET=internal next dev",
"build": "next build",
"build:internal": "NEXT_PUBLIC_DEPLOY_TARGET=internal next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"llms": "node scripts/llms.mjs",
"agents": "node scripts/agents.mjs",
"docs:check": "node scripts/llms.mjs --check && node scripts/agents.mjs --check"
},
"dependencies": {
"@aws-sdk/client-s3": "3.1116.0",
"@base-ui/react": "^1.7.0",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-tooltip": "^1.1.2",
"@vercel/analytics": "^2.0.1",
"classnames": "^2.5.1",
"d3": "^7.9.0",
"morphicons": "^1.7.0",
"motion": "^12.0.0",
"next": "16.3.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"sonner": "^2.0.7",
"swr": "^2.5.0",
"tailwind-merge": "^2.5.4",
"viem": "^2.55.10"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/d3": "^7.4.3",
"@types/node": "^24",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"autoprefixer": "^10.4.20",
"eslint": "9.39.5",
"eslint-config-next": "16.3.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.19",
"typescript": "^5",
"vitest": "^4.1.11"
},
"overrides": {
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"typescript-eslint": "8.67.0"
}
}