-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.18 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
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
{
"name": "angular-electron-bootstrap",
"version": "0.0.0",
"license": "MIT",
"private": true,
"homepage": "nowebde",
"author": {
"name": "",
"email": "contactmailaccount"
},
"keywords": [],
"main": "main.js",
"scripts": {
"postinstall": "npx electron-builder install-app-deps",
"ng": "ng",
"ng:serve": "ng serve -o",
"start": "npm-run-all -p ng:serve electron:serve lint:watch",
"build": "npm run lint && ng build && npm run electron:tsc",
"build:prod": "npm run lint && ng build --prod && npm run electron:tsc",
"lint": "gulp lint",
"lint:watch": "gulp lintwatch",
"electron:tsc": "tsc main.ts",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:tsc && 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",
"test": "karma start ./karma.conf.js",
"pree2e:build": "webdriver-manager update --gecko false && npm run ng:serve",
"pree2e:protractor": "wait-on http-get://localhost:4200/ && protractor ./protractor.conf.js",
"e2e": "npm-run-all -p pree2e:build pree2e:protractor"
},
"dependencies": {
"@ng-bootstrap/ng-bootstrap": "^1.0.1",
"bootstrap": "^4.0.0",
"electron-store": "^1.3.0",
"font-awesome": "^4.7.0"
},
"devDependencies": {
"@angular/animations": "^5.2.8",
"@angular/cdk": "^5.2.4",
"@angular/cli": "^1.7.1",
"@angular/common": "^5.2.5",
"@angular/compiler": "^5.2.5",
"@angular/compiler-cli": "^5.2.5",
"@angular/core": "^5.2.5",
"@angular/forms": "^5.2.5",
"@angular/http": "^5.2.5",
"@angular/language-service": "5.2.5",
"@angular/material": "^5.2.4",
"@angular/platform-browser": "5.2.5",
"@angular/platform-browser-dynamic": "5.2.5",
"@angular/platform-server": "^5.2.8",
"@angular/router": "5.2.5",
"@ngx-translate/core": "9.1.1",
"@ngx-translate/http-loader": "2.0.1",
"@types/core-js": "0.9.36",
"@types/jasmine": "2.8.3",
"@types/jasminewd2": "2.0.2",
"@types/node": "7.0.7",
"codelyzer": "4.0.1",
"copyfiles": "1.2.0",
"core-js": "2.4.1",
"cross-env": "5.0.5",
"dotenv": "5.0.0",
"electron": "1.8.2",
"electron-builder": "20.0.5",
"electron-reload": "1.2.2",
"enhanced-resolve": "3.3.0",
"fs-extra": "5.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.1",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"jquery": "^3.3.1",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.4.1",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"npm-run-all": "4.1.2",
"npx": "9.7.1",
"popper.js": "^1.14.0",
"protractor": "5.3.0",
"replace": "0.3.0",
"rxjs": "5.5.6",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "2.6.2",
"wait-on": "^2.1.0",
"webdriver-manager": "12.0.6",
"zone.js": "0.8.19"
}
}