-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.28 KB
/
package.json
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
{
"name": "credit-card-tokenization-api",
"version": "1.0.0",
"description": "API permitirá gestionar tarjetas de crédito tokenizados",
"main": "app.ts",
"scripts": {
"dev": "nodemon app.ts",
"start": "node app.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"node.js",
"typescript",
"express",
"redis",
"tokenization",
"api-rest"
],
"author": "Willy N. Santos",
"license": "ISC",
"dependencies": {
"@types/ioredis": "^5.0.0",
"@types/node": "^20.11.27",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-validator": "^7.0.1",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"luhn": "^2.4.1",
"node": "^21.7.1",
"nodemon": "^3.1.0",
"redis": "^4.6.13",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/redis": "^4.0.11",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}