-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
180 lines (180 loc) · 9.06 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "angular-pwa-seed",
"version": "0.1.0",
"license": "MIT",
"angular-cli": {},
"config": {
"name": "AngularPwaSeed",
"shortname": "AngularPwaSeed",
"color": "#0f3a54"
},
"scripts": {
"start": "npm run ng -- serve --port 5555 --aot",
"serve": "npm run concurrently -- --kill-others \"npm run build.watch\" \"npm run wait && npm run ionic.serve\"",
"start.mobile": "npm run concurrently -- --kill-others \"npm run build.watch\" \"npm run wait && npm run ionic.livesync\"",
"serve.mobile": "npm run start.mobile",
"docker.build": "docker build -f Dockerfile -t angular-pwa-seed . -f Dockerfile-build",
"docker.build.force": "docker build --no-cache -f Dockerfile -t angular-pwa-seed . -f Dockerfile-build",
"docker.run": "docker run -p 5555:5555 -t -d --name angular-pwa-seed-container --rm angular-pwa-seed",
"docker.run.interative": "docker run -p 5555:5555 --name angular-pwa-seed-container --rm -i -t angular-pwa-seed bash",
"docker.exec.script": "docker exec angular-pwa-seed-container npm run",
"docker.stop": "docker rm angular-pwa-seed-container -f",
"docker.copy": "docker cp angular-pwa-seed-container:/usr/src/app/www ./www",
"docker.build.host": "docker build -t angular-pwa-seed-host . -f Dockerfile-host",
"docker.run.host": "docker run --name angular-pwa-seed-host-container -d -p 5555:80 angular-pwa-seed-host",
"docker.stop.host": "docker rm angular-pwa-seed-host-container -f",
"wait": "npm run sleepms -- 40000",
"lint": "npm run ng -- lint",
"test": "npm run ng -- test",
"pree2e": "npm run webdriver-manager -- update",
"e2e": "npm run ng -- e2e",
"pwa.manifest": "cd src && \"./../node_modules/.bin/cross-conf-env\" pwa-manifest --name=\"npm_package_config_name\" --short_name=\"npm_package_config_shortname\" --background_color=\"npm_package_config_color\" --theme_color=\"npm_package_config_color\" ./ ./assets/pwa/ --start_url=./index.html --display=standalone --orientation=any --direction=portrait --icons=./assets/icon.png",
"postpwa.manifest": "./node_modules/.bin/replace \"(\\\\{2})\" \"/\" src/manifest.json",
"config.theme": "npm run config.theme:title && npm run config.theme:toolbar && npm run config.theme:color",
"config.theme:toolbar": "./node_modules/.bin/cross-conf-env \"./node_modules/.bin/replace\" \"(<title\\b[^>]*>)[^<>]*(</title>)\" \"<title>npm_package_config_name</title>\" src/index.html",
"config.theme:title": "./node_modules/.bin/cross-conf-env \"./node_modules/.bin/replace\" \"(<ion-title\\b[^>]*>)[^<>]*(</ion-title>)\" \"<ion-title>npm_package_config_name</ion-title>\" src/app/layout/header/header.component.html",
"config.theme:color": "./node_modules/.bin/cross-conf-env \"./node_modules/.bin/replace\" \"^\\$theme-color:\\s*(.*);$\" \"$theme-color: npm_package_config_color;\" src/theme/theme.scss",
"resources": "./node_modules/.bin/ionic resources && npm run resources.copy && npm run pwa.manifest && npm run config.theme",
"resources.copy": "./node_modules/.bin/cpx \"resources/**/*\" src/assets",
"build": "npm run ng -- build --aot",
"postbuild_old": "node routes.js --out www/ngsw-manifest.json --module src/app/app.module.ts",
"build.watch": "npm run build -- -w",
"build.dev": "npm run build -- --dev",
"build.prod": "npm run build -- --prod",
"build.prod.aot": "npm run build -- --prod --aot",
"build.prod.exp": "npm run build.prod.aot -- --build-optimizer",
"prepublish.prod": "npm run resources",
"publish.prod": "npm run build.prod",
"prepublish.prod.exp": "npm run resources",
"publish.prod.exp": "npm run build.prod.exp",
"postinstall": "npm run concurrently -- \"echo 1\" \"npm run cordova.prepare\" -s first",
"cordova.prepare": "npm run cordova -- prepare --verbose",
"cordova.livesync": "npm run cordova -- run -- --live-reload",
"cordova.serve": "npm run cordova -- serve 5555",
"start.cordova": "npm run concurrently -- --kill-others \"npm run build.watch\" \"npm run wait && npm run cordova.livesync\"",
"ionic.serve": "npm run ionic -- serve --port 5555 --all --nogulp",
"ionic.livesync": "npm run ionic.serve -- --lab",
"start.ionic": "npm run build && npm run ionic.serve",
"prestart.windows": "npm run build",
"start.windows": "npm run run.windows",
"run.windows": "npm run cordova -- run windows",
"preinstall.windows": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm windows\" -s first",
"install.windows": "npm run cordova -- platform add windows --save",
"prestart.ubuntu": "npm run build",
"start.ubuntu": "npm run run.ubuntu",
"run.ubuntu": "npm run cordova -- run --device",
"preinstall.ubuntu": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm ubuntu\" -s first",
"install.ubuntu": "npm run cordova -- platform add ubuntu --save",
"prestart.ios": "npm run build",
"start.ios": "npm run run.ios",
"run.ios": "npm run cordova -- run ios",
"preinstall.ios": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm ios\" -s first",
"install.ios": "npm run cordova -- platform add ios --save",
"prestart.osx": "npm run build",
"start.osx": "npm run run.osx",
"run.osx": "npm run cordova -- run",
"preinstall.osx": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm osx\" -s first",
"install.osx": "npm run cordova -- platform add osx --save",
"prestart.android": "npm run build",
"start.android": "npm run run.android",
"run.android": "npm run cordova -- run android",
"preinstall.android": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm android\" -s first",
"install.android": "npm run cordova -- platform add android --save",
"prestart.browser": "npm run build",
"start.browser": "npm run run.browser",
"run.browser": "npm run cordova -- run browser -- --debug --port=5555",
"preinstall.browser": "npm run concurrently -- \"echo 1\" \"npm run cordova -- platform rm browser\" -s first",
"install.browser": "npm run cordova -- platform add browser --save",
"publish.prod.browser": "npm run publish.prod && npm run install.browser && npm run cordova -- build browser --release",
"watch": "npm run concurrently -- --kill-others \"npm run build.watch\"",
"start.platform": "npm run concurrently -- --kill-others \"npm run build\"",
"precordova": "npm run mkdirp -- www",
"cordova": "./node_modules/.bin/cordova",
"ionic": "./node_modules/.bin/ionic",
"sleepms": "./node_modules/.bin/sleepms",
"concurrently": "./node_modules/.bin/concurrently",
"ng": "./node_modules/.bin/ng",
"cpx": "./node_modules/.bin/cpx",
"mkdirp": "./node_modules/.bin/mkdirp",
"webdriver-manager": "./node_modules/.bin/webdriver-manager"
},
"private": false,
"dependencies": {
"@angular/animations": "^5.1.2",
"@angular/common": "^5.1.2",
"@angular/compiler": "^5.1.2",
"@angular/core": "^5.1.2",
"@angular/forms": "^5.1.2",
"@angular/http": "^5.1.2",
"@angular/platform-browser": "^5.1.2",
"@angular/platform-browser-dynamic": "^5.1.2",
"@angular/platform-server": "^5.1.2",
"@angular/router": "^5.1.2",
"@angular/service-worker": "^5.1.2",
"@ionic-native/core": "4.5.2",
"@ionic-native/network": "4.5.2",
"@ionic-native/splash-screen": "4.5.2",
"@ionic-native/status-bar": "4.5.2",
"@ionic/storage": "2.1.3",
"@openid/openyolo": "^0.1.2",
"angularfire2": "5.0.0-rc.4",
"bootstrap": "^3.3.7",
"browser-sync": "2.18.13",
"cheerio": "1.0.0-rc.2",
"core-js": "^2.4.1",
"csp-parse": "0.0.2",
"elementtree": "0.1.6",
"firebase": "~4.6.2",
"glob": "7.1.2",
"intl": "^1.2.5",
"ionic-angular": "3.9.2",
"ionic-plugin-keyboard": "~2.2.1",
"ionicons": "3.0.0",
"moment": "2.15.2",
"ng2-charts": "1.6.0",
"ngx-bootstrap": "2.0.0-beta.8",
"oidc-client": "1.3.0",
"plist": "2.1.0",
"q": "1.4.1",
"rxjs": "^5.5.2",
"ts-helpers": "1.1.2",
"web-animations-js": "^2.3.1",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.7.1",
"@angular/compiler-cli": "^5.1.2",
"@angular/language-service": "^5.1.2",
"@angular/tsc-wrapped": "^4.4.6",
"@ionic/cli-plugin-proxy": "1.4.12",
"@ionic/cli-utils": "^1.18.0",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"concurrently": "^3.4.0",
"cordova": "6.5.0",
"cpx": "1.5.0",
"cross-conf-env": "1.0.7",
"ionic": "2.2.3",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"mkdirp": "^0.5.1",
"ng-pwa-tools": "0.0.15",
"ng-router-resolver": "^0.1.1",
"node-sass": "^4.5.2",
"protractor": "~5.1.2",
"pwa-manifest-cli": "1.1.2",
"replace": "^0.3.0",
"sleep-ms": "^2.0.1",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.4.2"
}
}