-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"engines": {
"node": ">=18.12.0"
},
"name": "nodejs-backend-template",
"version": "1.0.0",
"description": "A boilerplate project designed to kick-start Node.js applications with a structured setup.",
"type": "module",
"main": "src/server.js",
"scripts": {
"dev": "nodemon",
"build": "NODE_ENV=production tsc",
"prod": "NODE_ENV=production node dist/src/server.js",
"staging": "NODE_ENV=staging node dist/src/server.js",
"start:test": "NODE_ENV=testing node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,json,css,md}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,json,css,md}'"
},
"keywords": [],
"author": "Hasib Iqbal",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.4",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}