-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "create-express-lite",
"version": "1.1.2",
"description": "",
"main": "index.js",
"keywords": [
"utility",
"express",
"awesome",
"amazing",
"npm",
"boiler-plate"
],
"bin": {
"create-express-lite": "./bin/create-express-lite.js"
},
"scripts": {
"prod": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-developer-org/create-express-lite.git"
},
"author": "Mudassir Quraishi",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-developer-org/create-express-lite/issues"
},
"homepage": "https://github.com/the-developer-org/create-express-lite#README",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.2.1",
"nodemailer": "^6.9.12",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.12.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.0.11",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint - fix",
"prettier -write",
"git add"
]
}
}