-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.2 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.2 KB
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
97
98
{
"name": "electron-angular-ngrx",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"angular",
"angular 6",
"@angular/cli",
"electron",
"hot module reload",
"typescript",
"redux devtool",
"devtron",
"ngrx",
"hmr",
"seed",
"sass"
],
"main": "main.js",
"repository": "https://Imackie@bitbucket.org/css_dev_lab/client.git",
"bugs": "https://devcssi.atlassian.net/secure/RapidBoard.jspa?rapidView=27&projectKey=POM&view=planning",
"author": "Ian Mackie",
"description": "An Angular 6x, NGRX, Electron, HMR, Live Reload, driven workflow",
"scripts": {
"ng": "ng",
"ng:serve": "ng serve",
"cli:renderer": "node utils/cli-renderer",
"electron:tsc": "tsc --project src/electron/tsconfig.electron.json",
"electron:serve": "wait-on http-get://localhost:4200/ & npm run electron:tsc && electron ./dist/electron/main.js",
"start": "npm run cli:renderer && npm-run-all -p hmr electron:serve",
"hmr": "ng serve --hmr",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"test": "karma start ./karma.conf.js",
"docs": "./node_modules/.bin/compodoc -p ./tsconfig.json -n \"Angular Electron NGRX documentation\" -o -s ",
"lint": "ng lint",
"e2e": "protractor ./protractor.conf.js",
"build": "ng build",
"pree2e": "webdriver-manager update --standalone false --gecko false --quiet"
},
"dependencies": {
"@angular/animations": "^6.1.1",
"@angular/cli": "^6.1.2",
"@angular/common": "^6.1.1",
"@angular/compiler": "^6.1.1",
"@angular/core": "^6.1.1",
"@angular/forms": "^6.1.1",
"@angular/http": "^6.1.1",
"@angular/platform-browser": "^6.1.1",
"@angular/platform-browser-dynamic": "^6.1.1",
"@angular/router": "^6.1.1",
"@ngrx/effects": "^6.0.0",
"@ngrx/entity": "^6.0.0",
"@ngrx/router-store": "^6.0.0",
"@ngrx/store": "^6.0.0",
"@ngrx/store-devtools": "^6.0.0",
"bootstrap": "^4.0.0-alpha.6",
"core-js": "^2.4.1",
"font-awesome": "^4.7.0",
"ng2-split-pane": "^1.4.0",
"ngx-electron": "^1.0.4",
"rx-ipc-electron": "^0.1.2",
"rxjs": "^6.2.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.7.2",
"@angular/compiler-cli": "^6.1.1",
"@angular/language-service": "^6.1.1",
"@angularclass/hmr": "^2.1.3",
"@compodoc/gulp-compodoc": "0.0.8",
"@ngrx/schematics": "6.1.0",
"@types/jasmine": "^2.8.4",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^8.5.9",
"@types/socket.io-client": "^1.4.32",
"codelyzer": "^4.0.1",
"devtron": "^1.4.0",
"electron": "^2.0.6",
"electron-devtools-installer": "^2.2.3",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^2.0.5",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.3",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"ngrx-store-freeze": "^0.2.4",
"npm-run-all": "^4.1.3",
"protractor": "^5.4.0",
"ts-node": "^7.0.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2",
"webdriver-manager": "^12.1.0"
}
}