-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 4.13 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "musicalypse",
"description": "A modern audio player built with Web technologies.",
"version": "1.0.0",
"author": "Thomas Gambet <thomas.gambet@gmail.com> (https://github.com/tgambet/)",
"license": "MIT",
"main": "target/electron/out-tsc/main.js",
"scripts": {
"ng": "ng",
"ng:serve": "ng serve --progress",
"ng:serve:electron": "ng serve --configuration=electron",
"ng:build": "ng build --progress",
"ng:build:prod": "ng build --prod",
"ng:build:electron": "ng build --configuration=electron --output-path=target/dist/electron",
"ng:test": "ng test",
"ng:lint": "ng lint",
"ng:e2e": "ng e2e",
"sbt:run": "sbt run",
"sbt:clean": "sbt clean",
"sbt:compile": "sbt compile",
"sbt:stage": "sbt stage",
"sbt:stage:zip": "sbt universal:packageBin",
"sbt:stage:tar": "sbt universal:packageZipTarball",
"web:run": "npm-run-all ng:build:prod sbt:run",
"web:serve": "npm-run-all --parallel ng:serve sbt:run",
"web:serve:electron": "npm-run-all --parallel ng:serve:electron sbt:run",
"web:build": "npm-run-all ng:build:prod sbt:compile",
"web:stage": "npm-run-all ng:build:prod sbt:stage",
"web:stage:zip": "npm-run-all ng:build:prod sbt:stage:zip",
"web:stage:tar": "npm-run-all ng:build:prod sbt:stage:tar",
"electron:run": "npm-run-all electron:build && electron .",
"electron:run:dev": "npm run electron:tsc && electron .",
"electron:serve": "npm run electron:tsc && npm-run-all --parallel web:serve:electron electron:serve_",
"electron:serve_": "wait-on http-get://localhost:4200 && electron . --serve",
"electron:build": "npm-run-all --parallel electron:tsc ng:build:electron web:stage",
"electron:tsc": "tsc --project electron",
"electron:jre": "node bin/copy-jre.js",
"electron:windows:store:x64": "node bin/electron-windows-store-x64.js",
"electron:windows:store:x86": "node bin/electron-windows-store-x86.js",
"electron:windows:build": "electron-builder build --windows --config build/electron/electron-builder.json",
"electron:linux:build": "electron-builder build --linux --config build/electron/electron-builder.json",
"electron:stage:windows": "npm-run-all electron:build electron:windows:build",
"electron:stage:linux": "npm-run-all electron:build electron:linux:build",
"postinstall": "electron-builder install-app-deps",
"heroku-postbuild": "npm run ng:build:prod"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.4",
"@angular/animations": "^7.1.4",
"@angular/cdk": "^7.1.4",
"@angular/cli": "~7.1.4",
"@angular/common": "^7.1.4",
"@angular/compiler": "^7.1.4",
"@angular/compiler-cli": "^7.1.4",
"@angular/core": "^7.1.4",
"@angular/forms": "^7.1.4",
"@angular/http": "^7.1.4",
"@angular/language-service": "^7.1.4",
"@angular/material": "^7.2.0",
"@angular/platform-browser": "^7.1.4",
"@angular/platform-browser-dynamic": "^7.1.4",
"@angular/pwa": "^0.11.4",
"@angular/router": "^7.1.4",
"@angular/service-worker": "^7.1.4",
"@ngrx/effects": "^7.0.0",
"@ngrx/entity": "^7.0.0",
"@ngrx/router-store": "^7.0.0",
"@ngrx/store": "^7.0.0",
"@ngrx/store-devtools": "^7.0.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "^4.5.0",
"core-js": "^2.5.4",
"dotenv": "^5.0.1",
"electron": "^3.0.13",
"electron-builder": "^20.38.3",
"electron-reload": "^1.4.0",
"electron-windows-store": "^2.1.0",
"fs-extra": "^6.0.1",
"hammerjs": "^2.0.8",
"immutable": "^4.0.0-rc.12",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"material-design-icons": "^3.0.1",
"npm-run-all": "^4.1.2",
"prompt-sync": "^4.1.6",
"protractor": "~5.3.2",
"rxjs": "^6.3.3",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~3.1.6",
"wait-on": "^2.1.0",
"zone.js": "^0.8.24"
}
}