-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.03 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "glo-api-test",
"productName": "glo-api-test",
"description": "glo-api-test",
"version": "1.1.0-SNAPSHOT",
"license": "MIT",
"author": "Justin White <http://juwhite.info>",
"main": "dist/main.js",
"scripts": {
"build-electron": "ng build --base-href . && cp src/electron/* dist && cp src/config.json dist",
"start": "npm run build-electron && electron dist/main.js",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-windows": "electron-packager . glo-api-test --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName='Pavlov Media'--version-string.FileDescription=glo-api-test --version-string.ProductName='glo-api-test'",
"package-linux": "electron-packager . glo-api-test --overwrite --asar=true --platform=linux --arch=x64 --icon=assets/icons/linux/icon.png --prune=true --out=release-builds",
"package-all": "electron-packager . --overwrite --all --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds"
},
"private": true,
"dependencies": {
"@angular-devkit/core": "^0.5.0",
"@angular/animations": "^5.2.0",
"@angular/cli": "~1.7.2",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/compiler-cli": "^5.2.0",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/language-service": "^6.0.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@types/node": "^6.0.106",
"body-parser": "~1.18.3",
"chart.js": "~2.7.2",
"codelyzer": "^4.0.1",
"core-js": "^2.4.1",
"electron-installer-dmg": "^0.2.1",
"electron-winstaller": "^2.5.2",
"express": "~4.16.4",
"node-cmd": "~3.0.0",
"plist": "~3.0.1",
"primeicons": "~1.0.0-beta.10",
"primeng": "~6.1.4",
"pusher": "~2.1.3",
"rxjs": "^5.1.0",
"ts-md5": "~1.2.4",
"ts-node": "~2.0.0",
"tslint": "^5.9.1",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular-devkit/core": "^0.5.0",
"@angular/animations": "^5.2.0",
"@angular/cli": "~1.7.2",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/compiler-cli": "^5.2.0",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/language-service": "^6.0.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@types/node": "^6.0.106",
"codelyzer": "^4.0.1",
"core-js": "^2.4.1",
"electron": "~3.0.5",
"electron-installer-dmg": "^0.2.1",
"electron-packager": "~8.7.2",
"electron-winstaller": "^2.5.2",
"primeicons": "~1.0.0-beta.10",
"primeng": "~6.1.4",
"rxjs": "^5.1.0",
"ts-node": "~2.0.0",
"tslint": "^5.9.1",
"typescript": "~2.6.2",
"zone.js": "^0.8.4"
}
}