-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "opheliabackend",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "tsc && node dist/app.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "4.14.1",
"@types/bcrypt": "^5.0.0",
"@types/express-session": "^1.17.7",
"@types/morgan": "^1.9.4",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"prisma": "^4.14.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"uuidv4": "^6.2.13",
"zod": "^3.21.4"
}
}