-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
83 lines (83 loc) · 2.85 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
{
"name": "angular-electron-typeorm-starter",
"version": "0.0.0",
"main": "main.js",
"description": "Angular 6(+) and Electron (Typescript + SCSS + Hot Reload) for creating cross platform applications.",
"homepage": "https://github.com/CubikNeRubik/angular-electron-typeorm-starter",
"author": {
"name": "Vlad Haidei",
"email": "[email protected]"
},
"keywords": [
"angular",
"angular 6",
"electron",
"typescript",
"typeorm",
"sass",
"scss"
],
"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": {
"sqlite3": "^4.0.9",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^8.0.2",
"@angular-devkit/architect": "^0.800.3",
"@angular-devkit/build-angular": "^0.800.3",
"@angular-devkit/core": "^8.0.3",
"@angular/animations": "^8.0.1",
"@angular/cdk": "^8.0.1",
"@angular/cli": "~8.0.3",
"@angular/common": "^8.0.1",
"@angular/compiler": "^8.0.1",
"@angular/compiler-cli": "^8.0.1",
"@angular/core": "^8.0.1",
"@angular/forms": "^8.0.1",
"@angular/http": "^7.0.0",
"@angular/language-service": "^8.0.1",
"@angular/material": "^8.0.1",
"@angular/platform-browser": "^8.0.1",
"@angular/platform-browser-dynamic": "^8.0.1",
"@angular/router": "^8.0.1",
"@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": "^3.1.4",
"electron": "^9.4.0",
"electron-builder": "^20.44.2",
"electron-reload": "^1.4.0",
"fs": "0.0.1-security",
"hammerjs": "^2.0.8",
"npm-run-all": "4.1.5",
"npx": "^10.2.0",
"rxjs": "^6.5.2",
"stream": "0.0.2",
"ts-node": "~8.3.0",
"tslint": "~5.17.0",
"typescript": "^3.4.5",
"wait-on": "3.2.0",
"webpack": "^4.34.0",
"zone.js": "^0.9.1"
}
}