-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
{
"name": "electron-angular",
"version": "1.0.0",
"description": "Electron with angular quick starter",
"scripts": {
"start": "electron .",
"debug": "electron --inspect-brk=5858 .",
"dist": "npm run webpack:main && electron-builder",
"pack": "npm run webpack:main && electron-builder --dir",
"ng": "ng",
"start:render": "ng serve --public-host localhost:4200 --serve-path /",
"hmr": "npm start -- --configuration hmr",
"build": "ng build",
"prod": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"webpack:main": "webpack --config ./webpack/main.config.js",
"serve": "webpack --config ./webpack/main.config.js --watch --mode=development",
"e2e": "ng e2e"
},
"main": "main-release/main.js",
"build": {
"appId": "com.example",
"files": [
"!src${/*}",
"!e2e",
"!tsconfig*.json",
"!tslint.json",
"!angular.json",
"!karma.conf.js",
"!.*",
"!main${/*}",
"!main-release/**/*.js.map"
]
},
"nsis": {
"oneClick": true
},
"repository": "https://github.com/diyews/electron-angular",
"keywords": [
"Electron",
"Angular",
"diyews"
],
"author": "diyews",
"license": "MIT",
"devDependencies": {
"@angular-devkit/build-angular": "~12.1.2",
"@angular/animations": "~12.1.2",
"@angular/cli": "~12.1.2",
"@angular/common": "~12.1.2",
"@angular/compiler": "~12.1.2",
"@angular/compiler-cli": "~12.1.2",
"@angular/core": "~12.1.2",
"@angular/forms": "~12.1.2",
"@angular/language-service": "~12.1.2",
"@angular/platform-browser": "~12.1.2",
"@angular/platform-browser-dynamic": "~12.1.2",
"@angular/router": "~12.1.2",
"@angularclass/hmr": "^3.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.17.5",
"codelyzer": "^6.0.0",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"rxjs": "~6.6.2",
"ts-loader": "^9.2.5",
"ts-node": "~7.0.0",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"zone.js": "~0.11.4"
}
}