-
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.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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": "xml-signature-api",
"version": "1.0.0",
"description": "API para firmar documentos XML con certificados digitales",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc",
"test": "jest"
},
"keywords": ["xml", "signature", "certificate", "dgii", "dominican-republic"],
"author": "Tu Nombre",
"license": "MIT",
"dependencies": {
"express": "4.18.2",
"multer": "1.4.5-lts.1",
"@xmldom/xmldom": "0.8.6",
"axios": "1.7.9",
"busboy": "1.6.0",
"dotenv": "16.0.3",
"form-data": "4.0.0",
"fs": "0.0.1-security",
"jsonwebtoken": "9.0.2",
"node-forge": "1.3.1",
"stream-length": "1.0.2",
"string-to-file-stream": "2.0.0",
"xml-crypto": "2.1.5",
"xml-js": "1.6.11",
"xpath": "0.0.32",
"cors": "2.8.5",
"helmet": "7.1.0",
"express-rate-limit": "7.1.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.5",
"@types/node-forge": "^1.3.10",
"typescript": "^5.3.3",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"@types/cors": "^2.8.17"
}
}