-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.48 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
50
51
52
53
54
55
56
{
"name": "express-nodejs-boilerplate",
"version": "1.0.0",
"description": "Express.js + Node.js boilerplate — JWT auth, role-based access, CRUD setup, and scalable modular architecture.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc --outDir dist",
"start": "node dist/server.js",
"dev": "nodemon",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mar1shell/express-nodejs-boilerplate.git"
},
"keywords": [
"express",
"nodejs",
"rest",
"api",
"jwt"
],
"author": "mar1shell",
"license": "MIT",
"bugs": {
"url": "https://github.com/mar1shell/express-nodejs-boilerplate/issues"
},
"homepage": "https://github.com/mar1shell/express-nodejs-boilerplate#readme",
"dependencies": {
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.0",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
}
}