-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 6.63 KB
/
Copy pathpackage.json
File metadata and controls
157 lines (157 loc) · 6.63 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "opensolve",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:ps": "docker compose ps",
"docker:reset": "docker compose down --volumes --remove-orphans",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint \"components/contests/**/*\" \"components/staff/contests/**/*\" \"app/(platform)/contests/page.tsx\" \"app/staff/contests/page.tsx\" \"app/(platform)/problems/[slug]/submissions/page.tsx\" \"app/(platform)/submissions/[submissionId]/page.tsx\" \"app/share/s/[publicId]/page.tsx\" \"app/(reader)/u/[handle]/page.tsx\" \"app/(auth)/auth/verify-email/page.tsx\" \"app/(auth)/auth/forgot-password/page.tsx\" \"app/(platform)/settings/account/page.tsx\" \"app/(platform)/settings/security/page.tsx\" \"app/api/webhooks/resend/route.ts\" --max-warnings=0",
"lint:all": "eslint . --max-warnings=0",
"fix": "eslint \"components/contests/**/*\" \"components/staff/contests/**/*\" \"app/(platform)/contests/page.tsx\" \"app/staff/contests/page.tsx\" \"app/(platform)/problems/[slug]/submissions/page.tsx\" \"app/(platform)/submissions/[submissionId]/page.tsx\" \"app/share/s/[publicId]/page.tsx\" \"app/(reader)/u/[handle]/page.tsx\" \"app/(auth)/auth/verify-email/page.tsx\" \"app/(auth)/auth/forgot-password/page.tsx\" \"app/(platform)/settings/account/page.tsx\" \"app/(platform)/settings/security/page.tsx\" \"app/api/webhooks/resend/route.ts\" --fix",
"fix:all": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "cross-env SESSION_SECRET=\"test-session-secret-change-me-1234567890\" SENSITIVE_DATA_KEY=\"test-sensitive-data-key-change-me-1234567890\" vitest run",
"test:watch": "cross-env SESSION_SECRET=\"test-session-secret-change-me-1234567890\" SENSITIVE_DATA_KEY=\"test-sensitive-data-key-change-me-1234567890\" vitest watch",
"test:skip-db": "cross-env SKIP_DB_SETUP=1 SESSION_SECRET=\"test-session-secret-change-me-1234567890\" SENSITIVE_DATA_KEY=\"test-sensitive-data-key-change-me-1234567890\" vitest run",
"prisma:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"judge:worker": "cross-env DOTENV_CONFIG_PATH=.env tsx -r dotenv/config workers/judge/index.ts",
"judge:watchdog": "cross-env DOTENV_CONFIG_PATH=.env tsx -r dotenv/config workers/judge/watchdog.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.926.0",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@hookform/resolvers": "^5.2.2",
"@otplib/preset-default": "^12.0.1",
"@prisma/client": "^6.1.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.23.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^5.59.8",
"@tanstack/react-query-devtools": "^5.59.8",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.12",
"@tiptap/extension-image": "^3.10.4",
"@tiptap/extension-link": "^3.10.4",
"@tiptap/extension-placeholder": "^3.10.4",
"@tiptap/react": "^3.10.4",
"@tiptap/starter-kit": "^3.10.4",
"@trpc/client": "^11.7.1",
"@trpc/next": "^11.7.1",
"@trpc/react-query": "^11.7.1",
"@trpc/server": "^11.7.1",
"@uiw/react-codemirror": "^4.25.3",
"amqplib": "^0.10.9",
"axios": "^1.13.2",
"bcryptjs": "^2.4.3",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"emblor": "^1.4.8",
"framer-motion": "^12.23.24",
"hugeicons-react": "^0.3.0",
"input-otp": "^1.4.2",
"k6": "^0.0.0",
"katex": "^0.16.25",
"lru-cache": "^11.2.2",
"marked": "^17.0.0",
"nanoid": "^5.0.0",
"next": "^16.0.7",
"next-themes": "^0.4.6",
"nodemailer": "^6.9.8",
"nuqs": "^2.7.2",
"pino": "^10.1.0",
"prism-react-renderer": "^2.4.1",
"prom-client": "^15.1.3",
"qrcode.react": "^4.2.0",
"react": "19.2.0",
"react-day-picker": "^9.11.1",
"react-dom": "19.2.0",
"react-hook-form": "^7.66.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.6",
"recharts": "^2.15.4",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sanitize-html": "^2.17.0",
"sonner": "^2.0.7",
"superjson": "^2.2.5",
"tailwind-merge": "^3.3.1",
"turndown": "^7.2.2",
"vaul": "^1.1.2",
"ws": "^8.18.3",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4",
"@types/amqplib": "^0.10.8",
"@types/bcryptjs": "^2.4.2",
"@types/k6": "^1.4.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.0",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.8",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"pino-pretty": "^13.1.2",
"prettier": "^3.6.2",
"prisma": "^6.1.0",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.8"
}
}