-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
{
"dependencies": {
"bcrypt": "^6.0.0",
"bullmq": "^5.70.4",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^8.0.1",
"pg": "^8.17.2",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"redis": "^5.10.0",
"ua-parser-js": "^2.0.9",
"zod": "^4.3.5",
"zod-validation-error": "^5.0.0"
},
"name": "auth_service",
"version": "1.0.0",
"description": "Stateless API-first authentication with email login, verification, and password recovery. Built with Node.js, Express, and PostgreSQL for secure and scalable user management.",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "npx tsc",
"dev": "NODE_ENV=development nodemon --exec tsx src/index.ts",
"start": "npx tsc && node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ahmedm2002/Auth_Service.git"
},
"keywords": [
"Auth",
"Service",
"Scaleable"
],
"author": "Ahmed Mujtaba",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ahmedm2002/Auth_Service/issues"
},
"homepage": "https://github.com/Ahmedm2002/Auth_Service#readme",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.5",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.16.0",
"@types/pino": "^7.0.4",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"pino-pretty": "^13.1.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}