-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "muhc-users",
"version": "1.0.0",
"description": "Microservice for users",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "mocha || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MUHC-DP-Project/muhc-users.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MUHC-DP-Project/muhc-users/issues"
},
"homepage": "https://github.com/MUHC-DP-Project/muhc-users#readme",
"dependencies": {
"@types/mongoose": "^5.10.4",
"@types/uuid": "^8.3.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.7.0",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.1",
"nodemailer": "^6.5.0",
"uuid": "^8.3.1",
"typescript": "^4.2.2",
"tslint": "^6.1.3",
"node": "^15.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/node": "^14.14.35",
"chai": "^4.2.0",
"mocha": "^8.2.1"
}
}