-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.74 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
{
"name": "devtrends",
"version": "0.9.0-beta.1",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS=--dns-result-order=ipv4first next dev --turbopack --hostname 127.0.0.1 -p 3000",
"build": "next build --webpack",
"start": "next start",
"docs:dev": "npm run start --prefix apps/docs",
"docs:build": "npm run build --prefix apps/docs",
"docs:serve": "npm run serve --prefix apps/docs",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "node scripts/benchmark.mjs",
"autoresearch:eval:scoring": "node scripts/autoresearch-eval-scoring.mjs",
"autoresearch:eval:routing": "node scripts/autoresearch-eval-routing.mjs",
"autoresearch:loop:scoring": "node scripts/autoresearch-runner.mjs --track scoring",
"autoresearch:loop:routing": "node scripts/autoresearch-runner.mjs --track routing",
"postinstall": "node scripts/ensure-next-app-shim.mjs"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Edge versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS major versions",
"not dead"
],
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@icons-pack/react-simple-icons": "^13.11.2",
"@nivo/core": "^0.99.0",
"@nivo/heatmap": "^0.99.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.3",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.20",
"@types/d3": "^7.4.3",
"class-variance-authority": "^0.7.1",
"cli-spinners": "^3.4.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"devicon": "^2.17.0",
"framer-motion": "^12.23.24",
"ldrs": "^1.1.9",
"lucide-react": "^0.462.0",
"nanospinner": "^1.2.2",
"next": "^16.2.1",
"next-themes": "^0.4.6",
"puppeteer": "^24.40.0",
"react": "19.1.0",
"react-countup": "^6.5.3",
"react-dom": "19.1.0",
"react-icon-cloud": "^4.1.7",
"recharts": "^3.7.0",
"rss-parser": "^3.13.0",
"simple-icons": "^16.12.0",
"simple-statistics": "^7.8.8",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"wink-sentiment": "^5.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "^16.2.1",
"fast-check": "^4.5.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5",
"vitest": "^4.0.18"
}
}