-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.44 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
{
"name": "angular7-electron-typeorm-project",
"version": "1.0.0",
"main": "main.js",
"author": {
"name": "Seyed Ali Roshan",
"email": "[email protected]"
},
"scripts": {
"build": "npm run postinstall:electron && npm run electron:tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"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",
"start": "npm run postinstall:electron && npm-run-all -p ng:serve electron:serve",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && npm run electron:tsc && ng serve -o",
"postinstall": "npm run postinstall:electron && npx electron-builder install-app-deps",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall"
},
"private": true,
"dependencies": {
"mysql2": "^1.6.5",
"tslib": "^1.9.0",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@angular-devkit/architect": "^0.13.8",
"@angular-devkit/build-angular": "~0.13.8",
"@angular-devkit/core": "^0.7.5",
"@angular/animations": "^7.2.12",
"@angular/cli": "~7.3.8",
"@angular/common": "^7.2.12",
"@angular/compiler": "^7.2.12",
"@angular/compiler-cli": "^7.2.12",
"@angular/core": "^7.2.12",
"@angular/forms": "^7.2.12",
"@angular/http": "^7.2.12",
"@angular/language-service": "^7.2.13",
"@angular/platform-browser": "^7.2.12",
"@angular/platform-browser-dynamic": "^7.2.12",
"@angular/router": "^7.2.12",
"@types/node": "^12.0.8",
"angular-cli-builders": "^2.1.2",
"codelyzer": "~5.1.0",
"commonjs": "0.0.1",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^2.6.5",
"electron": "^5.0.4",
"electron-builder": "^20.43.0",
"electron-packager": "^13.1.1",
"electron-reload": "^1.4.0",
"fs": "0.0.1-security",
"npm-run-all": "4.1.5",
"npx": "^10.2.0",
"rxjs": "^6.5.2",
"stream": "0.0.2",
"ts-node": "~8.2.0",
"tslint": "~5.16.0",
"typescript": "~3.2.4",
"wait-on": "3.2.0",
"zone.js": "^0.8.29"
}
}