-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.64 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
{
"name": "ng-electron",
"version": "1.0.1",
"homepage": "https://github.com/simo-an/ng-electron",
"author": {
"name": "SIMU",
"email": "[email protected]"
},
"keywords": [
"ng",
"angular",
"angular 12",
"electron",
"electron 13",
"angular electron",
"nodejs",
"typescript",
"less",
"windows",
"mac",
"linux"
],
"main": "dist/main/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"serve": "npm run script:tsc && node scripts/app-runner/index.js",
"build": "npm run pack:main && npm run pack:renderer",
"release": "npm run build && electron-builder build --publish never",
"pack:main": "npm run script:tsc && cross-env NODE_ENV=production webpack --progress --config scripts/app-runner/webpack.main.config.js",
"pack:renderer": "ng build --configuration production",
"script:tsc": "tsc -p scripts/tsconfig.json"
},
"private": true,
"dependencies": {
"@angular/common": "12.1.2",
"@angular/compiler": "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",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.0",
"@angular-devkit/build-angular": "12.1.2",
"@angular-eslint/builder": "12.3.1",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/schematics": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/cli": "12.1.2",
"@angular/compiler-cli": "12.1.2",
"@types/jasmine": "3.7.6",
"@types/jasminewd2": "2.0.9",
"@types/mocha": "8.2.2",
"@types/node": "15.6.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"cfonts": "^2.9.3",
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"electron": "13.1.2",
"electron-builder": "22.11.7",
"electron-reload": "1.5.0",
"eslint": "7.29.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "35.3.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~3.7.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ts-loader": "^9.2.3",
"typescript": "4.2.4",
"wait-on": "^5.3.0",
"webpack": "5.39.1",
"webpack-cli": "4.7.2"
},
"engines": {
"node": ">=12.0.0"
}
}