-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.33 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.33 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cwv-monitor-app",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "eslint && next build",
"start": "next start",
"lint": "eslint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clickhouse:migrate": "node ./scripts/run-clickhouse-migrate.mjs",
"clickhouse:migrate:dev": "dotenvx run -- node ./scripts/run-clickhouse-migrate.mjs",
"seed:demo": "node ./scripts/seed-demo-data.mjs",
"seed:cwv-events": "node ./scripts/seed-demo-data.mjs --custom-events-only",
"test:integration": "vitest --config vitest.integration.config.ts",
"test:perf": "vitest run ./src/test/performance-guardrails.test.ts --config vitest.performance.config.ts",
"test:anomaly": "vitest run ./src/test/anomaly-detection.test.ts --config vitest.anomaly.config.ts"
},
"dependencies": {
"@clickhouse/client": "^1.14.0",
"@hookform/resolvers": "^5.2.2",
"@next-safe-action/adapter-react-hook-form": "^2.0.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-table": "^8.21.3",
"arktype": "^2.1.28",
"better-auth": "^1.4.9",
"class-variance-authority": "^0.7.1",
"clickhouse-migrations": "^1.1.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.556.0",
"next": "16.1.1",
"next-safe-action": "^8.0.11",
"next-themes": "^0.4.6",
"nuqs": "^2.8.5",
"pino": "^10.1.0",
"rate-limiter-flexible": "^4.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.68.0",
"recharts": "^3.6.0",
"remeda": "^2.32.0",
"sonner": "^1.7.4",
"tailwind-merge": "^3.4.0",
"ua-parser-js": "^2.0.7",
"waddler": "^0.1.1",
"zod": "^4.1.13",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@dotenvx/dotenvx": "^1.34.0",
"@eslint-react/eslint-plugin": "^2.3.13",
"@faker-js/faker": "^10.1.0",
"@storybook/addon-a11y": "^10.1.4",
"@storybook/addon-docs": "^10.1.4",
"@storybook/addon-vitest": "^10.1.4",
"@storybook/nextjs-vite": "^10.1.4",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/zxcvbn": "^4.4.5",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"cwv-monitor-contracts": "workspace:*",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^10.1.4",
"eslint-plugin-unicorn": "^62.0.0",
"msw": "^2.12.4",
"msw-storybook-addon": "^2.0.6",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.1.4",
"tailwindcss": "^4",
"testcontainers": "^11.10.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.15"
},
"msw": {
"workerDirectory": [
"public"
]
}
}