-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"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",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"prettier": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}