-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "ms-auth",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc -p . && tsc-alias -p tsconfig.json"
},
"keywords": [],
"author": "Aanttrax",
"license": "ISC",
"description": "Microservice to manage Auth",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.2",
"morgan": "^1.10.0"
}
}