generated from AnwarHossainSR/Best-Readme-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.35 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
{
"name": "express-api-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"build": "tsc",
"postinstall": "npm run build",
"prepare": "husky install",
"eslint": "eslint --fix src",
"prettier": "prettier --write .",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore"
},
"lint-staged": {
"*.{js,jsx,md,ts,tsx}": "yarn prettier",
"*.{js,jsx,ts,tsx}": "yarn eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.7",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^8.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"_moduleAliases": {
"@/resources": "dist/resources",
"@/utils": "dist/utils",
"@/middleware": "dist/middleware",
"@/swagger": "dist/swagger",
"@/upload": "dist/upload"
}
}