generated from Chander-00/Express-MongoAPI-BoilerTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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
{
"name": "Express-MongoAPI-BoilerTemplate",
"version": "1.0.0",
"description": "This is the basic base API template.",
"main": "index.js",
"scripts": {
"dev": "DEBUG=app:* nodemon src/index",
"start": "NODE_ENV=production node src/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByChanderZap/Express-MongoAPI-BoilerTemplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ByChanderZap/Express-MongoAPI-BoilerTemplate/issues"
},
"homepage": "https://github.com/ByChanderZap/Express-MongoAPI-BoilerTemplate#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"aws-sdk": "^2.799.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.15",
"multer": "^1.4.2",
"node-fetch": "^2.6.7",
"nodemailer": "^6.4.16",
"uuidv4": "^6.2.5"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}