forked from pamarthidurgarao/java-angular-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "electron-app",
"description": "Demonstrates spawning Express from Electron and using it to serve content or create a standalone package",
"version": "1.0.0",
"main": "main.js",
"author": {
"name": "Angelo Manganiello",
"email": "angelo.mang@libero.it"
},
"license": "Apache-2.0",
"scripts": {
"preconfig": "cpx \"../frontend-app/dist/**/*.*\" dist -C -p && cd dist && cd .. ",
"start": "npm run preconfig && electron .",
"package": "npm run preconfig && build"
},
"build": {
"productName": "electron-app",
"npmRebuild": "false",
"asar": false,
"directories": {
"output": "distribution"
},
"win": {
"icon": "icon.png",
"target": [
"portable"
]
},
"mac": {
"icon": "icon.png",
"target": [
"dmg"
]
},
"linux": {
"icon": "icon.png",
"target": [
"AppImage"
]
}
},
"devDependencies": {
"cpx": "1.5.0",
"electron": "1.8.2",
"electron-builder": "20.15.1"
},
"dependencies": {
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"dotenv": "4.0.0",
"express": "4.16.2",
"jquery": "3.3.1",
"keymaster": "1.6.2",
"lodash": "4.17.4",
"mongoose": "3.6.20",
"morgan": "1.7.0",
"request": "2.83.0",
"tungus": "0.0.5"
}
}