-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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": "backend_boilerplate",
"version": "1.0.0",
"description": "Backend Boilerplate with NodeJs Express and Mongodb",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikemHood/Backend_Boilerplate.git"
},
"keywords": [
"Backend",
"NodeJs",
"Mongodb",
"Mongoose",
"Express"
],
"author": "Ikem Peter",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikemHood/Backend_Boilerplate/issues"
},
"homepage": "https://github.com/ikemHood/Backend_Boilerplate#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"winston": "^3.11.0"
},
"devDependencies": {
"prettier": "^3.1.1"
}
}