-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.39 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.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
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
{
"name": "tlef-create",
"version": "1.0.0",
"description": "TLEF CREATE - AI-Powered Quiz Generator (Combined Frontend & Backend)",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite",
"dev:backend": "nodemon server.js",
"saml:fetch-cert": "node scripts/fetch-idp-cert.mjs",
"build": "vite build",
"start": "node server.js",
"staging": "npm run build && NODE_ENV=production npm start",
"production": "npm run build && NODE_ENV=production npm start",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:backend:unit": "cd routes/create && NODE_OPTIONS=--experimental-vm-modules jest --config jest.unit.config.js --runInBand",
"test:backend": "cd routes/create && NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:backend:watch": "cd routes/create && NODE_OPTIONS=--experimental-vm-modules jest --runInBand --watch",
"test:backend:coverage": "cd routes/create && NODE_OPTIONS=--experimental-vm-modules jest --runInBand --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install chromium",
"deploy:staging": "npm run build && echo 'Ready for staging deployment!'",
"health": "node -e \"console.log('TLEF-CREATE Health Check: OK')\""
},
"keywords": [
"quiz",
"ai",
"education",
"tlef",
"ubc"
],
"author": "UBC TLEF Team",
"license": "MIT",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.0",
"@lumieducation/h5p-express": "^10.0.5",
"@lumieducation/h5p-react": "^10.0.4",
"@lumieducation/h5p-server": "^10.0.4",
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/react-query": "^5.56.2",
"@xyflow/react": "^12.11.2",
"adm-zip": "^0.5.16",
"agenda": "^5.0.0",
"archiver": "^7.0.1",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^17.0.1",
"embla-carousel-react": "^8.3.0",
"eventsource": "^4.0.0",
"express": "^4.21.2",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"input-otp": "^1.2.4",
"ioredis": "^5.6.1",
"ltijs": "^5.9.9",
"lucide-react": "^0.462.0",
"mammoth": "^1.9.1",
"mongoose": "^8.16.5",
"multer": "^2.0.2",
"next-themes": "^0.3.0",
"node-fetch": "^3.3.2",
"openai": "^4.104.0",
"passport": "^0.7.0",
"passport-saml": "^3.2.4",
"passport-ubcshib": "^0.1.4",
"pdfjs-dist": "^4.10.38",
"pdfkit": "^0.17.2",
"pubsub-js": "^1.9.5",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-redux": "^9.2.0",
"react-resizable-panels": "^2.1.3",
"react-router-dom": "^6.26.2",
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"tailwind-merge": "^3.3.1",
"ubc-genai-toolkit-core": "^0.1.0",
"ubc-genai-toolkit-document-parsing": "^0.1.0",
"ubc-genai-toolkit-embeddings": "^0.1.1",
"ubc-genai-toolkit-llm": "^0.2.3",
"ubc-genai-toolkit-rag": "^0.1.5",
"uuid": "^13.0.0",
"vaul": "^0.9.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@jest/globals": "^30.0.5",
"@playwright/test": "^1.61.1",
"@redux-devtools/extension": "^3.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.5.5",
"@types/pubsub-js": "^1.8.6",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "^4.0.18",
"browser-sync": "^3.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"jest": "^30.0.5",
"jsdom": "^27.4.0",
"lovable-tagger": "^1.1.7",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"supertest": "^7.1.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vitest": "^4.0.18"
}
}