-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "anexo5",
"version": "1.0.0",
"description": "Generacion de informes y anexos v",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"production": "cross-env NODE_ENV=production nodemon server.js",
"build": "pkg . --out-dir build --targets node18-macos-x64 -d --no-toplevel --no-bundle --no-source-map --debug --public",
"build-win": "pkg . --out-dir build --targets node18-win-x64 -d --no-toplevel --no-bundle --no-source-map --debug --public"
},
"bin": {
"my-app": "server.js"
},
"author": "Victor Hugo Garcia Rodriguez",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1296.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.19.1",
"html-pdf": "^3.0.1",
"html-pdf-phantomjs-included": "^1.0.2",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"npm": "^9.6.3",
"pdfkit": "^0.13.0",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.16",
"puppeteer": "^19.8.5"
},
"pkg": {
"assets": [
"./config.env",
"./node_modules/phantomjs-prebuilt/bin/phantomjs"
]
}
}