-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "bun run src/index.ts",
"start:dev": "nodemon -r module-alias/register src/index.ts",
"build:dev": "bun prisma generate && tsc -p tsconfig.json",
"clean": "rm -rf ./dist/*",
"serve": "node -r module-alias/register dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"_moduleAliases": {
"@model": "./src/model",
"@utils": "./src/utils",
"@controllers": "./src/controllers",
"@middleware": "./src/middleware",
"@routes": "./src/routes",
"@types": "./src/types",
"@services": "./src/services",
"@config": "./src/config",
"@validations": "./src/validations",
"@constants": "./src/constants",
"@helper": "./src/helper"
},
"dependencies": {
"@prisma/client": "^5.16.2",
"@types/bcryptjs": "^2.4.6",
"@types/bl": "^5.1.0",
"@types/dockerode": "^3.3.30",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/socket.io": "^3.0.2",
"@types/xss-filters": "^0.0.30",
"bcryptjs": "^2.4.3",
"bl": "^6.0.14",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"i": "^0.3.7",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"nodemailer": "^6.9.14",
"prisma": "^5.16.2",
"simple-git": "^3.25.0",
"socket.io": "^4.7.5",
"xss": "^1.0.15",
"xss-filters": "^1.2.7"
}
}