-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "ment-restful-api",
"version": "1.0.0",
"description": "a boilerplate for building scalable and robust REST APIs using Node.js & TypeScript",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isdiop/MENT.git"
},
"author": "isdiop",
"license": "MIT",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"http-status": "^1.3.2",
"mongoose": "^5.6.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^11.1.0",
"jsonwebtoken": "^8.5.0"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/helmet": "0.0.43",
"@types/mongoose": "^5.5.11",
"@types/morgan": "^1.7.36",
"@types/node": "^12.6.8",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/validator": "^10.11.2",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}