-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
166 lines (166 loc) · 8.03 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": "ionic4-template",
"version": "0.0.7",
"author": "Russ Carver",
"description": "A blank starter project for Ionic 4",
"homepage": "http://www.russcarver.com/",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/russcarver/ionic4-project-template"
},
"scripts": {
"add-ios-dev": "npm run clean && npm run pre-script && npm run gen-config-dev && NODE_ENV=dev cordova platform add [email protected] --nosave --nofetch",
"add-ios-prod": "npm run clean && npm run pre-script && npm run gen-config-prod && NODE_ENV=prod cordova platform add [email protected] --nosave --nofetch",
"add-ios-test": "npm run clean && npm run pre-script && npm run gen-config-test && NODE_ENV=test cordova platform add [email protected] --nosave --nofetch",
"add-md-dev": "npm run clean && npm run pre-script && npm run gen-config-dev && NODE_ENV=dev cordova platform add [email protected] --nosave --nofetch",
"add-md-prod": "npm run clean && npm run pre-script && npm run gen-config-prod && NODE_ENV=prod cordova platform add [email protected] --nosave --nofetch",
"add-md-test": "npm run clean && npm run pre-script && npm run gen-config-test && NODE_ENV=test cordova platform add [email protected] --nosave --nofetch",
"build-ios-dev": "npm run pre-script && NODE_ENV=dev ionic cordova build ios --configuration=dev -- --buildFlag='-UseModernBuildSystem=0'",
"build-ios-prod": "npm run pre-script && NODE_ENV=prod ionic cordova build ios --configuration=production -- --buildFlag='-UseModernBuildSystem=0'",
"build-ios-test": "npm run pre-script && NODE_ENV=test onic cordova build ios --configuration=test -- --buildFlag='-UseModernBuildSystem=0'",
"build-md-dev": "npm run pre-script && NODE_ENV=dev ionic cordova build android --configuration=dev",
"build-md-prod": "npm run pre-script && NODE_ENV=prod ionic cordova build android --configuration=production",
"build-md-test": "npm run pre-script && NODE_ENV=test ionic cordova build android --configuration=test",
"clean": "rm -rf www/* && rm -rf plugins/* && rm -rf platforms/*",
"gen-config-dev": "NODE_ENV=dev node ./scripts/generate-config.js && NODE_ENV=dev node ./scripts/generate-index.js",
"gen-config-prod": "NODE_ENV=prod node ./scripts/generate-config.js && NODE_ENV=prod node ./scripts/generate-index.js",
"gen-config-test": "NODE_ENV=test node ./scripts/generate-config.js && NODE_ENV=test node ./scripts/generate-index.js",
"increment-major-version": "node ./scripts/increment-versioning 'major'",
"increment-minor-version": "node ./scripts/increment-versioning 'minor'",
"increment-patch-version": "node ./scripts/increment-versioning 'patch'",
"lint": "ng lint",
"ng": "ng",
"no-csp": "node ./scripts/generate-index.js 'no-csp'",
"pre-script": "node ./generators",
"refresh-project": "rm package-lock.json && npm run clean && rm -rf www/* && rm -rf plugins/* && rm -rf platforms/* && rm -rf node_modules/* && npm install",
"run-ios-dev": "npm run pre-script && NODE_ENV=dev ionic cordova run ios --configuration=dev -- --buildFlag='-UseModernBuildSystem=0'",
"run-ios-prod": "npm run pre-script && NODE_ENV=prod ionic cordova run ios --configuration=production -- --buildFlag='-UseModernBuildSystem=0'",
"run-ios-test": "npm run pre-script && NODE_ENV=test ionic cordova run ios --configuration=test -- --buildFlag='-UseModernBuildSystem=0'",
"run-md-dev": "npm run pre-script && NODE_ENV=dev ionic cordova run android --configuration=dev",
"run-md-prod": "npm run pre-script && NODE_ENV=prod ionic cordova run android --configuration=production",
"run-md-test": "npm run pre-script && NODE_ENV=test ionic cordova run android --configuration=test",
"start": "npm run clean && npm run pre-script && npm run no-csp && NODE_ENV=dev ng serve --configuration=dev",
"start-dev": "npm run clean && npm run pre-script && npm run no-csp && NODE_ENV=dev ionic serve -c --configuration=dev",
"test": "NODE_OPTIONS=--max-old-space-size=$npm_package_config_jest_memory_size ng test -- --coverage --coverage-reporters=text-summary --coverage-reporters=lcov",
"test-build": "NODE_OPTIONS=--max-old-space-size=$npm_package_config_jest_memory_size ng test -- --coverage --coverage-reporters=text-summary --coverage-reporters=cobertura",
"test-watch": "NODE_OPTIONS=--max-old-space-size=$npm_package_config_jest_memory_size ng test -- --watch"
},
"dependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@ionic-native/app-version": "5.18.0",
"@ionic-native/core": "5.18.0",
"@ionic-native/device": "5.18.0",
"@ionic-native/file": "5.18.0",
"@ionic-native/http": "5.18.0",
"@ionic-native/in-app-browser": "5.18.0",
"@ionic-native/keyboard": "5.18.0",
"@ionic-native/screen-orientation": "5.18.0",
"@ionic-native/splash-screen": "5.18.0",
"@ionic-native/status-bar": "5.18.0",
"@ionic/angular": "4.11.7",
"@ionic/storage": "2.2.0",
"cordova": "8.1.2",
"cordova-android": "8.1.0",
"cordova-custom-config": "5.1.0",
"cordova-ios": "5.1.1",
"cordova-plugin-app-version": "0.1.9",
"cordova-plugin-inappbrowser": "3.1.0",
"cordova-plugin-ionic-keyboard": "2.2.0",
"cordova-plugin-ionic-webview": "4.1.3",
"cordova-plugin-screen-orientation": "3.0.2",
"cordova-plugin-splashscreen": "5.0.3",
"cordova-plugin-statusbar": "2.4.3",
"cordova-plugin-whitelist": "1.3.4",
"core-js": "3.5.0",
"device": "0.3.9",
"es6-promise-plugin": "4.2.2",
"ionic": "5.4.13",
"ionicons": "4.6.3",
"lodash": "4.17.15",
"rxjs": "6.5.3",
"xml2js": "0.4.22",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular-builders/jest": "8.3.2",
"@angular-devkit/architect": "0.803.20",
"@angular-devkit/build-angular": "0.803.20",
"@angular-devkit/core": "8.3.20",
"@angular-devkit/schematics": "8.3.20",
"@angular/cli": "8.3.20",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/preset-env": "7.7.6",
"@ionic/angular-toolkit": "2.1.1",
"@types/cordova": "0.0.34",
"@types/jasmine": "3.5.0",
"@types/jasminewd2": "2.0.8",
"@types/jest": "24.0.23",
"@types/node": "12.12.17",
"acorn": "7.1.0",
"codelyzer": "5.2.0",
"fs-extra": "8.1.0",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"jest": "24.9.0",
"jest-preset-angular": "7.1.1",
"jest-trx-results-processor": "1.0.3",
"jest-zone-patch": "0.0.10",
"node-sass": "4.13.0",
"npm": "6.13.4",
"replace-in-file": "4.2.0",
"ts-node": "8.5.4",
"tslint": "5.20.1",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.4.5"
},
"engineStrict": true,
"engines": {
"node": ">=13.3.0",
"npm": ">=6.13.4"
},
"config": {
"ionic_source_map": "source-map",
"jest_memory_size": "4096",
"app_name_prod": "App",
"app_name_test": "App-test",
"app_name_dev": "App-dev",
"app_baseurl_prod": "http://prod.server:8080",
"app_baseurl_test": "http://test.server:8080",
"app_baseurl_dev": "http://dev.server:8080",
"google_play_services_version": "11.0.4",
"release_keystore_file": "my-release-key.jks",
"release_keystore_password": "password",
"release_key_alias": "my-alias",
"release_key_password": "password"
},
"cordova": {
"plugins": {
"cordova-custom-config": {},
"cordova-plugin-app-version": {},
"cordova-plugin-device": {},
"cordova-plugin-file": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {}
},
"platforms": [
"android",
"ios",
"browser"
]
}
}