-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.15 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": "novajudge",
"version": "2.0.0",
"private": true,
"bin": {
"submit": "./scripts/submit.mjs"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "eslint",
"prisma": "npx prisma generate",
"worker": "tsx -r dotenv/config worker.ts",
"worker:multi": "tsx -r dotenv/config scripts/start-workers.ts",
"worker:dev": "tsx watch -r dotenv/config worker.ts",
"stress": "tsx -r dotenv/config stress-test.ts",
"postinstall": "npx prisma db push && npx prisma generate && npx tsx scripts/copy-monaco.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@tailwindcss/typography": "^0.5.19",
"@uiw/react-markdown-preview": "5.2.1",
"@uiw/react-md-editor": "^4.0.11",
"@uiw/react-textarea-code-editor": "^3.1.1",
"bcryptjs": "^3.0.3",
"bullmq": "^5.66.5",
"cookie": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.26.2",
"ioredis": "^5.9.1",
"jose": "^6.1.3",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.3",
"jszip": "^3.10.1",
"katex": "^0.16.27",
"mime": "^4.1.0",
"monaco-editor": "^0.55.1",
"next": "16.1.1",
"pg": "^8.16.3",
"qrcode.react": "^4.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-mathjax": "^7.1.0",
"rehype-raw": "7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/ioredis": "^4.28.10",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/jszip": "^3.4.0",
"@types/mime": "^3.0.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prisma": "^7.2.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}