-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.92 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.92 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
{
"name": "@app/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "biome check src",
"format": "biome format --write src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --passWithNoTests",
"check:fix": "biome check --fix src"
},
"dependencies": {
"@domain/api-keys": "workspace:*",
"@domain/auth": "workspace:*",
"@domain/datasets": "workspace:*",
"@domain/email": "workspace:*",
"@domain/organizations": "workspace:*",
"@domain/projects": "workspace:*",
"@domain/shared": "workspace:*",
"@domain/spans": "workspace:*",
"@domain/users": "workspace:*",
"@platform/auth-better": "workspace:*",
"@platform/cache-redis": "workspace:*",
"@platform/db-clickhouse": "workspace:*",
"@platform/db-postgres": "workspace:*",
"@platform/email-transport": "workspace:*",
"@platform/env": "workspace:*",
"@platform/storage-object": "workspace:*",
"@repo/observability": "workspace:*",
"@repo/ui": "workspace:*",
"@repo/utils": "workspace:*",
"@tanstack/query-db-collection": "1.0.30",
"@tanstack/react-db": "0.1.77",
"@tanstack/react-form": "^1.28.4",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-router": "1.167.3",
"@tanstack/react-start": "1.166.14",
"better-auth": "catalog:",
"effect": "catalog:",
"lucide-react": "^0.481.0",
"papaparse": "^5.5.3",
"react": "catalog:",
"react-dom": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@repo/vitest-config": "workspace:*",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/papaparse": "^5.5.2",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"agentation": "^2.3.2",
"dotenv": "catalog:",
"postcss": "^8.5.3",
"vite": "catalog:"
}
}