-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.26 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
{
"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 .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:ci": "tsx tests/run-ci.ts",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@agendajs/mongo-backend": "^4.0.2",
"@agendajs/redis-backend": "^3.0.6",
"@better-auth/mongo-adapter": "^1.6.25",
"@bjorn3/browser_wasi_shim": "^0.4.2",
"@monaco-editor/react": "^4.7.0",
"@ronits2407/cp-api": "^1.0.8",
"@xyflow/react": "^12.11.1",
"agenda": "^6.2.5",
"axios": "^1.18.1",
"better-auth": "^1.6.25",
"browsercc": "^0.1.1",
"bullmq": "^5.78.1",
"ioredis": "^5.11.1",
"katex": "^0.17.0",
"lucide-react": "^1.17.0",
"mongodb": "^7.5.0",
"mongoose": "^9.8.1",
"next": "^16.2.12",
"pyodide": "^0.29.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-zoom-pan-pinch": "^4.0.3",
"redis": "^6.0.0",
"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.100.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"eventsource": "^4.1.0",
"jsdom": "^30.0.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}