-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "node-sqlserver-rest-api",
"version": "1.0.0",
"description": "Production-ready REST API boilerplate — Node.js + TypeScript + SQL Server with JWT auth, CRUD, and error handling.",
"main": "dist/app.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"lint": "eslint src --ext .ts"
},
"keywords": ["nodejs", "typescript", "sqlserver", "rest-api", "jwt", "express"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.19.2",
"mssql": "^10.0.4",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"dotenv": "^16.4.5",
"zod": "^3.23.0",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/mssql": "^9.1.5",
"@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9",
"@types/node": "^20.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.0"
}
}