-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 KB
/
package.json
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
{
"name": "express-startup-project",
"version": "1.0.0",
"description": "Quick Start Project is a Node.js server based on the Express framework and MySQL database.",
"main": "app.js",
"scripts": {
"start": "npm run dev",
"dev": "ts-node-dev --respawn ./src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx prisma generate && tsc -p ."
},
"author": {
"name": "Antonino Bonanno",
"email": "[email protected]",
"url": "https://github.com/AntoninoBonanno"
},
"repository": {
"type": "git",
"url": "https://github.com/AntoninoBonanno/express-startup-project"
},
"bugs": {
"url": "https://github.com/AntoninoBonanno/express-startup-project/issues"
},
"homepage": "https://github.com/AntoninoBonanno/express-startup-project#readme",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"prisma": "^3.8.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@keycloak/keycloak-admin-client": "^15.1.0",
"@prisma/client": "^3.8.1",
"async-middleware": "^1.2.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"generate-password": "^1.6.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"keycloak-connect": "^15.0.2",
"morgan": "^1.10.0",
"nanoid": "^3.1.30",
"openid-client": "^4.9.0",
"socket.io": "^4.3.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
}
}