-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.4 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
{
"name": "ccw",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -k -n web,worker -c cyan,magenta \"next dev\" \"tsx src/worker.ts\"",
"dev:web": "next dev",
"worker": "tsx src/worker.ts",
"build": "next build",
"start": "concurrently -k -n web,worker -c cyan,magenta \"next start\" \"tsx src/worker.ts\"",
"start:web": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "tsx tests/run-ci.ts",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@agendajs/mongo-backend": "^4.0.3",
"@agendajs/redis-backend": "^3.0.7",
"@better-auth/mongo-adapter": "^1.6.27",
"@bjorn3/browser_wasi_shim": "^0.4.2",
"@coding-club-iitg/ops-logger": "^0.3.1",
"@monaco-editor/react": "^4.7.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/sdk-trace-base": "^2.10.0",
"@opentelemetry/sdk-trace-node": "^2.10.0",
"@ronits2407/cp-api": "^1.2.0",
"@xyflow/react": "^12.11.3",
"agenda": "^6.2.6",
"axios": "^1.19.0",
"better-auth": "^1.6.27",
"browsercc": "^0.1.1",
"bullmq": "^6.1.0",
"github-slugger": "^2.0.0",
"katex": "^0.18.4",
"lucide-react": "^1.31.0",
"mdast-util-from-markdown": "^2.0.3",
"mongodb": "^7.5.0",
"mongoose": "^9.9.2",
"next": "^16.3.0",
"pyodide": "^314.0.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-zoom-pan-pinch": "^4.0.4",
"redis": "^6.2.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.1.0",
"remark-math": "^6.0.0",
"sass": "^1.102.0",
"web-push": "^3.6.7",
"zod": "^4.4.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/web-push": "^3.6.4",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.4",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.0",
"eventsource": "^5.0.0",
"playwright": "^1.62.1",
"prettier": "^3.9.6",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}