|
16 | 16 | <% if (props.pwa) { -%> |
17 | 17 | "serve:sw": "<%= run('build') %> && npx http-server ./<%= props.target.includes('cordova') ? 'www': 'dist' %> -p 4200", |
18 | 18 | <% } -%> |
19 | | - "lint": "ng lint && stylelint \"src/**/*.scss\" --syntax scss", |
| 19 | + "lint": "ng lint && stylelint \"src/**/*.scss\"", |
20 | 20 | "test": "<%= run('write:env') %> && ng test", |
21 | 21 | "test:ci": "<%= run('write:env') %> && <%= run('lint') %> && ng test --configuration=ci", |
22 | 22 | <% if (props.e2e || props.cypress) { -%> |
|
69 | 69 | "generate": "ng generate" |
70 | 70 | }, |
71 | 71 | "dependencies": { |
72 | | - "@angular/animations": "^13.0.3", |
73 | | - "@angular/common": "^13.0.3", |
74 | | - "@angular/compiler": "^13.0.3", |
75 | | - "@angular/core": "^13.0.3", |
76 | | - "@angular/forms": "^13.0.3", |
| 72 | + "@angular/animations": "^13.0.2", |
| 73 | + "@angular/common": "^13.0.2", |
| 74 | + "@angular/compiler": "^13.0.2", |
| 75 | + "@angular/core": "^13.0.2", |
| 76 | + "@angular/forms": "^13.0.2", |
77 | 77 | <% if (props.ui === 'bootstrap' || props.ui === 'material') { -%> |
78 | | - "@angular/localize": "^13.0.3", |
| 78 | + "@angular/localize": "^13.0.2", |
79 | 79 | <% } -%> |
80 | | - "@angular/platform-browser": "^13.0.3", |
81 | | - "@angular/platform-browser-dynamic": "^13.0.3", |
82 | | - "@angular/router": "^13.0.3", |
83 | | - "@ngx-translate/core": "^13.0.0", |
| 80 | + "@angular/platform-browser": "^13.0.2", |
| 81 | + "@angular/platform-browser-dynamic": "^13.0.2", |
| 82 | + "@angular/router": "^13.0.2", |
| 83 | + "@ngx-translate/core": "^14.0.0", |
84 | 84 | <% if (props.target.includes('cordova')) { -%> |
85 | 85 | "@ionic-native/core": "^5.30.0", |
86 | 86 | "@ionic-native/keyboard": "^5.30.0", |
87 | 87 | "@ionic-native/splash-screen": "^5.30.0", |
88 | 88 | "@ionic-native/status-bar": "^5.30.0", |
89 | | - "cordova-android": "^9.0.0", |
| 89 | + "cordova-android": "^10.1.1", |
90 | 90 | "cordova-custom-config": "^5.1.0", |
91 | 91 | "cordova-ios": "^6.2.0", |
92 | 92 | "cordova-plugin-device": "^2.0.3", |
|
97 | 97 | "cordova-plugin-whitelist": "^1.3.4", |
98 | 98 | <% } -%> |
99 | 99 | <% if (props.pwa) { -%> |
100 | | - "@angular/service-worker": "^13.0.3", |
| 100 | + "@angular/service-worker": "^13.0.2", |
101 | 101 | <% } -%> |
102 | 102 | <% if (props.ui === 'ionic') { -%> |
103 | 103 | "@ionic/angular": "^5.6.11", |
|
106 | 106 | "bootstrap": "^5.0.2", |
107 | 107 | "@fortawesome/fontawesome-free": "^5.15.1", |
108 | 108 | <% } else if (props.ui === 'material') { -%> |
109 | | - "@angular/cdk": "^13.0.3", |
110 | | - "@angular/material": "^13.0.3", |
111 | | - "@angular/flex-layout": "^12.0.0-beta.34", |
| 109 | + "@angular/cdk": "^13.0.2", |
| 110 | + "@angular/material": "^13.0.2", |
| 111 | + "@angular/flex-layout": "^12.0.0-beta.35", |
112 | 112 | "material-design-icons-iconfont": "^6.1.0", |
113 | 113 | <% } -%> |
114 | 114 | <% if (props.angulartics) { -%> |
115 | | - "angulartics2": "^10.0.0", |
| 115 | + "angulartics2": "^11.0.0", |
116 | 116 | <% } -%> |
117 | 117 | <% if (props.utility.includes('lodash')) { -%> |
118 | 118 | "lodash": "^4.17.20", |
|
126 | 126 | <% if (props.utility.includes('datefns')) { -%> |
127 | 127 | "date-fns": "^2.16.1", |
128 | 128 | <% } -%> |
129 | | - "rxjs": "^7.4.0", |
| 129 | + "rxjs": "^6.6.0", |
130 | 130 | "tslib": "^2.3.0", |
131 | 131 | "zone.js": "~0.11.4" |
132 | 132 | }, |
|
135 | 135 | "cordova": "^10.0.0", |
136 | 136 | <% } -%> |
137 | 137 | <% if (props.tools.includes('jest')) { -%> |
138 | | - "@angular-builders/jest": "^12.1.0", |
139 | | -<% } -%> |
140 | | - "@angular-devkit/build-angular": "~13.0.3", |
141 | | - "@angular-eslint/builder": "~12.3.1", |
142 | | - "@angular-eslint/eslint-plugin": "~12.3.1", |
143 | | - "@angular-eslint/eslint-plugin-template": "~12.3.1", |
144 | | - "@angular-eslint/schematics": "~12.3.1", |
145 | | - "@angular-eslint/template-parser": "~12.3.1", |
146 | | - "@angular/cli": "~13.0.3", |
147 | | - "@angular/compiler-cli": "~13.0.3", |
148 | | - "@angular/language-service": "~13.0.3", |
| 138 | + "@angular-builders/jest": "^13.0.0", |
| 139 | +<% } -%> |
| 140 | + "@angular-devkit/build-angular": "~13.0.2", |
| 141 | + "@angular-eslint/builder": "~13.0.1", |
| 142 | + "@angular-eslint/eslint-plugin": "~13.0.1", |
| 143 | + "@angular-eslint/eslint-plugin-template": "~13.0.1", |
| 144 | + "@angular-eslint/schematics": "~13.0.1", |
| 145 | + "@angular-eslint/template-parser": "~13.0.1", |
| 146 | + "@angular/cli": "~13.0.2", |
| 147 | + "@angular/compiler-cli": "~13.0.2", |
| 148 | + "@angular/language-service": "~13.0.2", |
149 | 149 | "@biesbjerg/ngx-translate-extract": "^7.0.3", |
150 | 150 | "@biesbjerg/ngx-translate-extract-marker": "^1.0.0", |
151 | 151 | "@ngx-rocket/scripts": "^5.1.0", |
152 | 152 | <% if (props.cypress) { -%> |
153 | 153 | "@cypress/schematic": "^1.5.0", |
154 | 154 | "cypress": "9.1.0", |
155 | 155 | <% } -%> |
156 | | - "@ngneat/until-destroy": "^8.0.4", |
157 | | - "@typescript-eslint/eslint-plugin": "4.28.2", |
158 | | - "@typescript-eslint/parser": "4.28.2", |
| 156 | + "@ngneat/until-destroy": "^9.0.0", |
| 157 | + "@typescript-eslint/eslint-plugin": "5.4.0", |
| 158 | + "@typescript-eslint/parser": "5.4.0", |
159 | 159 | <% if (!props.tools.includes('jest') || props.e2e) { -%> |
160 | 160 | "@types/jasmine": "^3.6.2", |
161 | 161 | "@types/jasminewd2": "^2.0.8", |
162 | 162 | <% } -%> |
163 | 163 | <% if (props.tools.includes('jest')) { -%> |
164 | | - "@types/jest": "^26.0.19", |
| 164 | + "@types/jest": "^27.0.3", |
165 | 165 | <% } -%> |
166 | | - "@types/node": "^12.19.12", |
| 166 | + "@types/node": "^12.20.37", |
167 | 167 | <% if (props.utility.includes('lodash')) { -%> |
168 | 168 | "@types/lodash": "^4.14.165", |
169 | 169 | <% } -%> |
|
175 | 175 | "electron-packager": "^15.1.0", |
176 | 176 | "electron-reload": "^1.5.0", |
177 | 177 | <% } -%> |
178 | | - "eslint": "^7.26.0", |
| 178 | + "eslint": "^8.3.0", |
179 | 179 | "eslint-plugin-import": "latest", |
180 | 180 | "eslint-plugin-jsdoc": "latest", |
181 | 181 | "eslint-plugin-prefer-arrow": "latest", |
|
185 | 185 | <% if (props.tools.includes('compodoc')) { -%> |
186 | 186 | "@compodoc/compodoc": "^1.1.11", |
187 | 187 | <% } -%> |
188 | | - "htmlhint": "^0.15.1", |
| 188 | + "htmlhint": "^1.0.0", |
189 | 189 | "https-proxy-agent": "^5.0.0", |
190 | 190 | <% if (!props.tools.includes('jest') || props.e2e) { -%> |
191 | 191 | "jasmine-core": "~3.8.0", |
|
204 | 204 | <% } -%> |
205 | 205 | <% if (props.tools.includes('prettier')) { -%> |
206 | 206 | "prettier": "^2.2.1", |
207 | | - "stylelint-config-prettier": "^8.0.2", |
| 207 | + "stylelint-config-prettier": "^9.0.3", |
208 | 208 | <% if (options.git) { -%> |
209 | 209 | "pretty-quick": "^3.1.0", |
210 | 210 | "husky": "^7.0.1", |
|
214 | 214 | "protractor": "~7.0.0", |
215 | 215 | <% } -%> |
216 | 216 | <% if (props.tools.includes('puppeteer')) { -%> |
217 | | - "puppeteer": "^5.5.0", |
| 217 | + "puppeteer": "^12.0.0", |
218 | 218 | <% } -%> |
219 | | - "stylelint": "~13.13.1", |
220 | | - "stylelint-config-recommended-scss": "~4.3.0", |
221 | | - "stylelint-config-standard": "~22.0.0", |
222 | | - "stylelint-scss": "~3.20.1", |
| 219 | + "stylelint": "~14.1.0", |
| 220 | + "stylelint-config-recommended-scss": "~5.0.2", |
| 221 | + "stylelint-config-standard": "~24.0.0", |
| 222 | + "stylelint-scss": "~4.0.0", |
223 | 223 | "ts-node": "^10.1.0", |
224 | 224 | "typescript": "~4.4.3" |
225 | 225 | <% if (props.tools.includes('prettier')) { -%> |
|
0 commit comments