-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "encuestas",
"version": "1.0.0",
"description": "Aplicacion de escritorio para realizar consultas atraves de 2 encuestas.",
"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": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.22",
"pkg": "^5.8.1",
"xlsx": "^0.18.5"
},
"pkg": {
"assets": [
"./config.env",
"./public/**",
"./node_modules/phantomjs-prebuilt/bin/phantomjs"
]
}
}