-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "cognito-auth-system",
"version": "1.0.0",
"description": "Sistema de autenticación completo con AWS Cognito y MFA",
"main": "dist/server.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon src/server.ts",
"dev:client": "cd client && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc",
"build:client": "cd client && npm run build",
"start": "node dist/server.js",
"install:all": "npm install && cd client && npm install"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"aws-sdk": "^2.1490.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"express-rate-limit": "^6.10.0",
"helmet": "^7.0.0",
"express-validator": "^7.0.1",
"qrcode": "^1.5.3",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/cors": "^2.8.13",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.0",
"@types/qrcode": "^1.5.2",
"@types/speakeasy": "^2.0.7",
"typescript": "^5.1.6",
"nodemon": "^3.0.1",
"concurrently": "^8.2.0",
"ts-node": "^10.9.1"
},
"keywords": ["aws", "cognito", "authentication", "mfa", "express", "react"],
"author": "Senior Software Engineer",
"license": "MIT"
}