-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "amader_bazar",
"version": "0.2.0",
"main": "app.js",
"keywords": [
"MERN",
"Ecommerce",
"React",
"Node",
"Express",
"MongoDB",
"amader bazar"
],
"author": {
"name": "md kawsar islam yeasin",
"url": "https://github.com/yeasin-2002",
"email": "[email protected]"
},
"license": "ISC",
"scripts": {
"dev": "rimraf dist && nodemon",
"build": "rimraf dist && tsc ",
"start": "cross-env NODE_ENV=production node dist/app.js",
"lint": "eslint ./src --ext .ts ",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"fix:all": "prettier --write \"src/**/*.ts\" && eslint ./src --ext .ts && tsc --noEmit",
"clear": "concurrently \" pnpx rimraf dist\" \" pnpx rimraf build\" \" pnpx rimraf node_modules \" "
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/geoip-lite": "^1.4.4",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"compression": "^1.7.4",
"consola": "^3.2.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.4",
"express-validator": "^7.0.1",
"geoip-lite": "^1.4.9",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"kleur": "^4.1.5",
"log-update": "^6.0.0",
"mongoose": "^8.2.4",
"multer": "1.4.5-lts.1",
"nodemailer": "^6.9.7",
"punycode": "^2.3.1",
"rimraf": "^5.0.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.3",
"@types/nodemailer": "^6.4.14",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add --all"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}