-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cyclia-backend",
"version": "1.0.0",
"description": "Awesome proyect",
"main": "index.ts",
"type": "commonjs",
"scripts": {
"dev": "ts-node-dev respawn index.ts",
"start": "ts-node index.ts",
"prettier:write": "npx prettier . --write",
"typeorm": "typeorm-ts-node-commonjs -d ./src/config/data.source.ts",
"mig:gen": "npm run typeorm migration:generate",
"mig:run": "npm run typeorm migration:run",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"nodejs",
"express",
"backend",
"jwt",
"jsonwebtoken",
"postgresql",
"typeorm",
"aws-sdk",
"kafka",
"multer",
"dotenv",
"bcrypt",
"textract",
"file-system",
"api",
"restful",
"microservicios",
"seguridad",
"criptografía",
"autenticación",
"autorización"
],
"author": "Alexander Marin",
"license": "Apache-2.0",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.20",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-textract": "^3.521.0",
"@types/multer": "^1.4.11",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"file-system": "^2.2.2",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.20"
}
}