-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.9 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
{
"name": "@semianalysisai/inferencex-app",
"version": "0.1.0",
"private": true,
"description": "InferenceX (formerly InferenceMAX) - Inference performance benchmarking and visualization",
"repository": {
"type": "git",
"url": "https://github.com/SemiAnalysisAI/inferencemax-app"
},
"scripts": {
"dev": "dotenv -e ../../.env -- next dev --turbopack",
"build": "dotenv -e ../../.env -- next build --turbopack",
"start": "dotenv -e ../../.env -- next start",
"preview": "pnpm run build && pnpm run start --port 3001",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:e2e": "cypress run --component && cypress run",
"test:e2e:component": "cypress run --component",
"test:e2e:integration": "cypress run",
"test:unit": "dotenv -e ../../.env -- vitest run",
"test:unit:coverage": "dotenv -e ../../.env -- vitest run --coverage",
"clean": "rimraf .next out",
"clean:all": "rimraf .next out cypress/videos cypress/screenshots coverage",
"cache:invalidate": "dotenv -e ../../.env -- tsx scripts/invalidate-cache.ts",
"cache:warmup": "dotenv -e ../../.env -- tsx scripts/warmup-cache.ts"
},
"dependencies": {
"@jpinsonneau/html-to-image": "^1.11.13",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@semianalysisai/inferencex-constants": "workspace:*",
"@semianalysisai/inferencex-db": "workspace:*",
"@tanstack/react-query": "^5.91.0",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.1",
"@vercel/speed-insights": "^2.0.0",
"adm-zip": "^0.5.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"lodash-es": "^4.17.23",
"lucide-react": "^0.577.0",
"next": "16.2.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.362.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
"@tailwindcss/postcss": "^4.2.2",
"@types/adm-zip": "^0.5.8",
"@types/d3": "^7.4.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.0",
"cross-env": "^10.1.0",
"cypress": "^15.12.0",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"esbuild": "^0.27.4",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.0.0",
"tailwindcss": "^4.2.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
}
}