This repository was archived by the owner on Dec 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.64 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
102
103
104
105
106
107
108
109
{
"name": "opencoursewire",
"private": true,
"type": "module",
"packageManager": "pnpm@10.12.1",
"scripts": {
"ts": "tsc --noEmit",
"build": "react-router build",
"dev": "ENVIRONMENT=development node server.js",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "vitest run",
"test:integration": "vitest run --config ./vitest.integration.config.ts",
"test:e2e": "PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:3001 playwright test",
"test:e2e:ci": "playwright test",
"test:e2e:ui": "PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:3001 playwright test --ui-host=0.0.0.0",
"start": "ENVIRONMENT=production node server.js",
"db:generate": "drizzle-kit generate",
"db:studio:local": "drizzle-kit studio",
"db:dbml": "tsx scripts/generate-dbml.ts",
"fix:module-content": "tsx scripts/fix-module-content-format.ts",
"inspect:module-content": "tsx scripts/inspect-module-content.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/s3-request-presigner": "^3.864.0",
"@conform-to/dom": "^1.7.2",
"@conform-to/react": "^1.7.2",
"@conform-to/zod": "^1.7.2",
"@hello-pangea/dnd": "^18.0.1",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@react-router/express": "^7.6.3",
"@react-router/fs-routes": "^7.6.3",
"@react-router/node": "^7.6.3",
"@react-router/serve": "^7.6.3",
"better-auth": "^1.2.10",
"better-call": "^1.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compression": "^1.8.0",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.2",
"embla-carousel-react": "^8.6.0",
"express": "^5.1.0",
"iovalkey": "^0.3.3",
"isbot": "^5.1.28",
"lucide-react": "^0.525.0",
"morgan": "^1.10.0",
"nanoid": "^5.1.5",
"nuqs": "^2.4.3",
"open-graph-scraper": "^6.10.0",
"pg": "^8.16.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"react-router": "^7.6.3",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@playwright/test": "^1.53.1",
"@react-router/dev": "^7.6.3",
"@tailwindcss/vite": "^4.1.11",
"@testcontainers/postgresql": "^11.0.3",
"@testcontainers/valkey": "^11.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.3",
"@types/express-serve-static-core": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^24.0.5",
"@types/pg": "^8.15.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "~3.2.4",
"drizzle-dbml-generator": "^0.10.0",
"drizzle-kit": "^0.31.4",
"drizzle-seed": "^0.3.1",
"happy-dom": "^18.0.1",
"jsdom": "^26.1.0",
"openai": "^5.12.2",
"react-router-devtools": "^5.0.6",
"tailwindcss": "^4.1.11",
"testcontainers": "^11.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3",
"uuid": "^11.1.0",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "~3.2.4"
}
}