-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"type": "module",
"name": "devquest-backend",
"version": "1.0.0",
"description": "DevQuest Backend Service",
"main": "src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"dev": "nodemon --exec tsx src/index.ts",
"build": "tsc"
},
"dependencies": {
"@prisma/client": "^6.0.1",
"auth-client": "^0.4.11",
"bcryptjs": "^2.4.3",
"better-auth": "^1.0.8",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"keycloak-connect": "^26.0.6",
"keycloak-js": "^26.0.6",
"next": "^15.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"prisma": "^6.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"transcript": "^0.0.6",
"tsc": "^2.0.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.1",
"@types/keycloak-js": "^2.5.4",
"@types/node": "^18.19.66",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/react": "^18.3.12",
"nodemon": "^3.1.7",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}