-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "pathbench",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0 --turbopack -p 9000",
"prebuild": "node scripts/build_meta.js && node scripts/generate-aggregated-cache.js",
"build": "next build",
"export": "next export",
"start": "npx serve@latest out -p 9000",
"lint": "next lint",
"deploy": "next build && next export",
"generate-cache": "node scripts/generate-aggregated-cache.js"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@types/d3": "^7.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.3",
"gh-pages": "^6.3.0",
"lucide-react": "^0.475.0",
"next": "15.2.0",
"next-themes": "^0.4.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.5.0",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@types/node": "^20.17.22",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^9.21.0",
"eslint-config-next": "^15.1.7",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}