-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
{
"name": "assessment-gradingmatrix",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.19.5",
"npm": ">=10.8.2"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"schema:dump": "node scripts/dump-schema.mjs",
"db:seed": "npx tsx scripts/seed-test-data.ts"
},
"dependencies": {
"@azure/storage-blob": "^12.28.0",
"@supabase/supabase-js": "^2.93.2",
"bcryptjs": "^3.0.3",
"browser-image-compression": "^2.0.2",
"cookie": "^1.1.1",
"csv-stringify": "^6.6.0",
"dotenv": "^17.3.1",
"file-saver": "^2.0.5",
"formidable": "^3.5.4",
"formidable-serverless": "^1.1.1",
"jose": "^6.2.1",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.577.0",
"mssql": "^11.0.1",
"multer": "^2.0.2",
"next": "^16.0.8",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hot-toast": "^2.6.0",
"sharp": "^0.34.5",
"uuid": "^11.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/file-saver": "^2.0.7",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/mssql": "^9.1.7",
"@types/multer": "^2.0.0",
"@types/next": "^8.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sharp": "^0.31.1",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"jsdom": "^28.1.0",
"next-connect": "^1.0.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}