-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.21 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dashboard",
"version": "0.0.0",
"license": "MIT",
"main": "./main.js",
"scripts": {
"postinstall": "npx electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p ng:serve electron:serve",
"build": "ng build",
"build:prod": "ng build --prod",
"ng:serve": "ng serve -o",
"electron:serve": "wait-on http-get://localhost:4200/ && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && npx electron-builder build --linux",
"electron:windows": "npm run build:prod && npx electron-builder build --windows",
"electron:mac": "npm run build:prod && npx electron-builder build --mac",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"start:ng": "ng serve",
"build:ng": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"electron": "ng build && electron .",
"electron-build": "ng build --prod && npx electron-builder build --linux"
},
"private": true,
"dependencies": {
"@angular/animation": "^4.0.0-beta.8",
"@angular/animations": "^6.0.3",
"@angular/common": "^6.0.2",
"@angular/compiler": "^6.0.2",
"@angular/core": "^6.0.2",
"@angular/forms": "^6.0.2",
"@angular/http": "^6.0.2",
"@angular/platform-browser": "^6.0.2",
"@angular/platform-browser-dynamic": "^6.0.2",
"@angular/router": "^6.0.2",
"@ng-select/ng-select": "^2.1.3",
"@ngx-pwa/local-storage": "^6.0.0-rc.0",
"@types/bootstrap": "^4.1.0",
"@types/googlemaps": "^3.30.9",
"@types/jquery": "^3.3.1",
"bootstrap": "4.1.1",
"bootstrap-material-design": "^4.1.1",
"chart.js": "^2.7.1",
"core-js": "^2.4.1",
"electron-json-storage": "^4.0.2",
"font-awesome": "^4.7.0",
"jquery": "3.2.1",
"ng2-izitoast": "^2.0.0",
"popper.js": "^1.14.3",
"rxjs": "^6.1.0",
"rxjs-compat": "^6.1.0",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.3",
"@angular/cli": "^6.0.8",
"@angular/compiler-cli": "^6.0.2",
"@angular/language-service": "^6.0.2",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"electron": "^2.0.0",
"electron-builder": "^20.11.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ngx-electron": "^1.0.4",
"protractor": "^5.3.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.7.2"
},
"build": {
"appId": "com.advocacia.app",
"asar": true,
"files": [
"*.js",
"*.html",
"build",
"assets",
"dist",
"build",
"node_modules"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"category": "productivity"
}
},
"files": [
"*.js",
"*.html",
"build",
"assets",
"dist",
"build",
"node_modules"
]
}