-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "hid-backend",
"version": "1.0.0",
"description": "Health Identity Directory (HID) Backend API",
"main": "server.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --require ./loadEnv.ts server.ts",
"start": "ts-node --require dotenv/config server.ts"
},
"keywords": [
"express",
"typescript",
"postgresql",
"health"
],
"author": "Faridat Akindele",
"license": "ISC",
"dependencies": {
"@types/uuid": "^10.0.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^8.0.1",
"pg": "^8.16.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.2",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.15.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}