-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 761 Bytes
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
{
"name": "cisco-secure-client-portal",
"version": "1.0.0",
"description": "Cisco Secure Client",
"main": "server.js",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"build": "pkg ."
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"multer": "^1.4.5-lts.1"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "dist",
"assets": [
"public/index.html",
"public/admin.html",
"public/css",
"public/js",
"public/img",
"public/fonts",
"public/**/*",
"uploads/**/*",
"data.json"
]
},
"devDependencies": {
"pkg": "^5.8.1"
}
}