-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 8.52 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
{
"name": "koiosanalytics",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"config": {
"name": "KoiosAnalytics",
"shortname": "KoiosAnalytics",
"color": "#0f3a54"
},
"scripts": {
"start": "npm run ng -- serve --port 5555",
"local": "npm run ng -- serve --e=source --source --host 0.0.0.0 --port 5443 --ssl true --ssl-key ./certs/dvlldk01b.key --ssl-cert ./certs/dvlldk01b.crt",
"dev": "npm run ng -- serve --e=dev --dev --host 0.0.0.0 --port 5443 --ssl true --ssl-key ./certs/dvlldk01b.key --ssl-cert ./certs/dvlldk01b.crt",
"prod": "npm run ng -- serve --e=prod --prod --host 0.0.0.0 --port 5443 --ssl true --ssl-key ./certs/dvlldk01b.key --ssl-cert ./certs/dvlldk01b.crt --output-hashing=none",
"serve": "http-server",
"codeship.predeploy": "npm cache clear && npm uninstall -g @angular/cli && npm install -g @angular/cli@latest && ng version && npm install",
"heroku-prebuild": "npm install -g http-server",
"heroku-postbuild": "npm uninstall --save angular-cli && npm install --save @angular/[email protected] && ng version && ng build && mv dist/* .",
"serve.local": "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 koiosanalytics:latest .",
"docker.build.force": "docker build --no-cache -f Dockerfile -t koiosanalytics:latest .",
"docker.run": "docker run -p 5555:5555 --name koiosanalytics-container --rm koiosanalytics:latest",
"docker.run.interative": "docker run -p 5555:5555 --name koiosanalytics-container --rm -i -t koiosanalytics bash",
"docker.run.script": "docker exec koiosanalytics-container npm run",
"wait": "npm run sleepms -- 40000",
"lint": "ng lint",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "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",
"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/variables.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",
"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",
"prepublish.prod": "npm run resources",
"publish.prod": "npm run build.prod",
"prepublish.prod.exp": "npm run resources",
"publish.prod.exp": "npm run resources && npm run build.prod.exp",
"preinstall": "npm rebuild node-sass",
"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:build": "./node_modules/.bin/ionic-app-scripts build",
"ionic:serve": "./node_modules/.bin/ionic-app-scripts serve",
"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",
"start.windows": "npm run watch -- \"npm run run.windows\"",
"prerun.windows": "npm run wait",
"run.windows": "npm run cordova -- run windows",
"install.windows": "npm run cordova -- platform rm windows & npm run cordova -- platform add windows --save",
"start.ubuntu": "npm run watch -- \"npm run run.ubuntu\"",
"prerun.ubuntu": "npm run wait",
"run.ubuntu": "npm run build && npm run cordova -- run --device",
"install.ubuntu": "npm run cordova -- platform rm ubuntu & npm run cordova -- platform add ubuntu --save",
"start.ios": "npm run watch -- \"npm run run.ios\"",
"prerun.ios": "npm run wait",
"run.ios": "npm run cordova -- run ios",
"install.ios": "npm run cordova -- platform rm ios & npm run cordova -- platform add ios --save",
"start.osx": "npm run watch -- \"npm run run.osx\"",
"prerun.osx": "npm run wait",
"run.osx": "npm run cordova -- run",
"install.osx": "npm run cordova -- platform rm osx & npm run cordova -- platform add osx --save",
"start.android": "npm run watch -- \"npm run run.android\"",
"prerun.android": "npm run wait",
"run.android": "npm run cordova -- run android",
"install.android": "npm run cordova -- platform rm android & npm run cordova -- platform add android --save",
"start.browser": "npm run watch -- \"npm run run.browser\"",
"prerun.browser": "npm run wait",
"run.browser": "npm run cordova -- run browser -- --debug --port=5555",
"install.browser": "npm run cordova -- platform rm 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\"",
"precordova": "mkdirp www",
"cordova": "cordova",
"ionic": "ionic",
"sleepms": "sleepms",
"concurrently": "concurrently",
"ng": "ng",
"mkdirp": "mkdirp"
},
"private": false,
"dependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@ionic-native/core": "^3.4.4",
"@ionic-native/network": "^3.4.4",
"@ionic-native/splash-screen": "^3.4.4",
"@ionic-native/status-bar": "^3.4.4",
"@ionic/storage": "2.0.1",
"bootstrap": "^3.3.7",
"browser-sync": "2.17.5",
"cheerio": "0.22.0",
"core-js": "^2.4.1",
"csp-parse": "0.0.2",
"elementtree": "0.1.6",
"glob": "7.1.1",
"intl": "^1.2.5",
"ionic-angular": "3.0.1",
"ionic-native": "2.9.0",
"ionicons": "3.0.0",
"moment": "2.15.2",
"ngx-bootstrap": "1.6.6",
"ng2-charts": "1.5.0",
"oidc-client": "1.3.0",
"plist": "2.0.1",
"q": "1.4.1",
"rxjs": "^5.1.0",
"ts-helpers": "1.1.2",
"web-animations-js": "^2.2.3",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@angular/cli": "1.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/service-worker": "^1.0.0-beta.8",
"@ionic/app-scripts": "1.3.0",
"@ionic/cli-build-ionic-angular": "0.0.4",
"@ionic/cli-plugin-cordova": "0.0.12",
"@ionic/cli-plugin-ionic-angular": "0.0.6",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"concurrently": "^3.4.0",
"cordova": "6.5.0",
"cpx": "1.5.0",
"cross-conf-env": "1.0.7",
"ionic": "2.2.2",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.5.2",
"protractor": "~5.1.0",
"pwa-manifest-cli": "1.1.2",
"replace": "^0.3.0",
"sleep-ms": "^2.0.1",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.2.0"
}
}