-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.39 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
{
"name": "learning-platform",
"version": "1.3.4",
"private": true,
"scripts": {
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:seed": "tsx src/lib/db/seed.ts",
"exercises:import": "tsx scripts/import-exercises.ts",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.0",
"@xterm/addon-fit": "^0.11",
"@xterm/xterm": "^6",
"@xyflow/react": "^12.10.2",
"argon2": "^0.44.0",
"better-sqlite3": "^12",
"drizzle-orm": "^0.45",
"iron-session": "^8.0.4",
"js-yaml": "^4",
"lucide-react": "^1.14",
"next": "^16",
"nodemailer": "^8.0.7",
"otplib": "^13.4.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-microsoft": "^2.1.0",
"qrcode": "^1.5.4",
"react": "^19",
"react-dom": "^19",
"zod": "^4"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7",
"@types/js-yaml": "^4",
"@types/node": "^25",
"@types/nodemailer": "^8.0.0",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.17",
"@types/passport-local": "^1.0.38",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"semantic-release": "^25.0.3",
"tailwindcss": "^4",
"tsx": "^4",
"typescript": "^6",
"vitest": "^4.1.5"
},
"overrides": {
"npm": ">=11.12.0",
"monaco-editor": {
"dompurify": ">=3.3.2"
},
"esbuild": ">=0.25.4"
}
}