-
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) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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": "api-template",
"version": "1.0.0",
"description": "",
"main": "./dist/src/index.js",
"scripts": {
"start": "npm run build && node --env-file=.env .",
"build": "npx tsc",
"test": "vitest run"
},
"author": "Brandon Nguyen (@lrbn86)",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.16.3",
"validator": "^13.15.23"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/express-rate-limit": "^5.1.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.3.0",
"@types/pg": "^8.15.5",
"@types/validator": "^13.15.10",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}