Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.43 KB | None | 0 0
  1. "dependencies": {
  2. "@angular/animations": "^7.2.12",
  3. "@angular/cdk": "^7.3.7",
  4. "@angular/common": "~7.2.0",
  5. "@angular/compiler": "~7.2.0",
  6. "@angular/core": "~7.2.0",
  7. "@angular/forms": "~7.2.0",
  8. "@angular/material": "^7.3.7",
  9. "@angular/platform-browser": "~7.2.0",
  10. "@angular/platform-browser-dynamic": "~7.2.0",
  11. "@angular/router": "~7.2.0",
  12. "ag-grid-angular": "^20.2.0",
  13. "ag-grid-community": "^20.2.0",
  14. "angular-progress-bar": "^1.0.9",
  15. "bootstrap": "^4.3.1",
  16. "core-js": "^2.5.4",
  17. "ng-circle-progress": "^1.4.1",
  18. "rxjs": "~6.3.3",
  19. "tslib": "^1.9.0",
  20. "zone.js": "~0.8.26"
  21. },
  22. "devDependencies": {
  23. "@angular-devkit/build-angular": "^0.800.0",
  24. "@angular/cli": "~7.3.3",
  25. "@angular/compiler-cli": "~7.2.0",
  26. "@angular/language-service": "~7.2.0",
  27. "@types/jasmine": "~2.8.8",
  28. "@types/jasminewd2": "~2.0.3",
  29. "@types/node": "~8.9.4",
  30. "codelyzer": "~4.5.0",
  31. "jasmine-core": "~2.99.1",
  32. "jasmine-spec-reporter": "~4.2.1",
  33. "karma": "~4.0.0",
  34. "karma-chrome-launcher": "~2.2.0",
  35. "karma-coverage-istanbul-reporter": "~2.0.1",
  36. "karma-jasmine": "~1.1.2",
  37. "karma-jasmine-html-reporter": "^0.2.2",
  38. "protractor": "~5.4.0",
  39. "ts-node": "~7.0.0",
  40. "tslint": "~5.11.0",
  41. "typescript": "~3.2.2"
  42. }
  43.  
  44. {
  45. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  46. "version": 1,
  47. "newProjectRoot": "projects",
  48. "projects": {
  49. "OrderDetails": {
  50. "root": "",
  51. "sourceRoot": "src",
  52. "projectType": "application",
  53. "prefix": "app",
  54. "schematics": {},
  55. "architect": {
  56. "build": {
  57. "builder": "@angular-devkit/build-angular:browser",
  58. "options": {
  59. "outputPath": "dist/OrderDetails",
  60. "index": "src/index.html",
  61. "main": "src/main.ts",
  62. "polyfills": "src/polyfills.ts",
  63. "tsConfig": "src/tsconfig.app.json",
  64. "assets": [
  65. "src/favicon.ico",
  66. "src/assets"
  67. ],
  68. "styles": [
  69. "src/styles.css"
  70. ],
  71. "scripts": [],
  72. "es5BrowserSupport": true
  73. },
  74. "configurations": {
  75. "production": {
  76. "fileReplacements": [
  77. {
  78. "replace": "src/environments/environment.ts",
  79. "with": "src/environments/environment.prod.ts"
  80. }
  81. ],
  82. "optimization": true,
  83. "outputHashing": "all",
  84. "sourceMap": false,
  85. "extractCss": true,
  86. "namedChunks": false,
  87. "aot": true,
  88. "extractLicenses": true,
  89. "vendorChunk": false,
  90. "buildOptimizer": true,
  91. "budgets": [
  92. {
  93. "type": "initial",
  94. "maximumWarning": "2mb",
  95. "maximumError": "5mb"
  96. }
  97. ]
  98. }
  99. }
  100. },
  101. "serve": {
  102. "builder": "@angular-devkit/build-angular:dev-server",
  103. "options": {
  104. "browserTarget": "OrderDetails:build"
  105. },
  106. "configurations": {
  107. "production": {
  108. "browserTarget": "OrderDetails:build:production"
  109. }
  110. }
  111. },
  112. "extract-i18n": {
  113. "builder": "@angular-devkit/build-angular:extract-i18n",
  114. "options": {
  115. "browserTarget": "OrderDetails:build"
  116. }
  117. },
  118. "test": {
  119. "builder": "@angular-devkit/build-angular:karma",
  120. "options": {
  121. "main": "src/test.ts",
  122. "polyfills": "src/polyfills.ts",
  123. "tsConfig": "src/tsconfig.spec.json",
  124. "karmaConfig": "src/karma.conf.js",
  125. "styles": [
  126. "src/styles.css"
  127. ],
  128. "scripts": [],
  129. "assets": [
  130. "src/favicon.ico",
  131. "src/assets"
  132. ]
  133. }
  134. },
  135. "lint": {
  136. "builder": "@angular-devkit/build-angular:tslint",
  137. "options": {
  138. "tsConfig": [
  139. "src/tsconfig.app.json",
  140. "src/tsconfig.spec.json"
  141. ],
  142. "exclude": [
  143. "**/node_modules/**"
  144. ]
  145. }
  146. }
  147. }
  148. },
  149. "OrderDetails-e2e": {
  150. "root": "e2e/",
  151. "projectType": "application",
  152. "prefix": "",
  153. "architect": {
  154. "e2e": {
  155. "builder": "@angular-devkit/build-angular:protractor",
  156. "options": {
  157. "protractorConfig": "e2e/protractor.conf.js",
  158. "devServerTarget": "OrderDetails:serve"
  159. },
  160. "configurations": {
  161. "production": {
  162. "devServerTarget": "OrderDetails:serve:production"
  163. }
  164. }
  165. },
  166. "lint": {
  167. "builder": "@angular-devkit/build-angular:tslint",
  168. "options": {
  169. "tsConfig": "e2e/tsconfig.e2e.json",
  170. "exclude": [
  171. "**/node_modules/**"
  172. ]
  173. }
  174. }
  175. }
  176. },
  177. "quarterEnd": {
  178. "root": "projects/quarterEnd/",
  179. "sourceRoot": "projects/quarterEnd/src",
  180. "projectType": "application",
  181. "prefix": "app",
  182. "schematics": {},
  183. "architect": {
  184. "build": {
  185. "builder": "@angular-devkit/build-angular:browser",
  186. "options": {
  187. "outputPath": "dist/quarterEnd",
  188. "index": "projects/quarterEnd/src/index.html",
  189. "main": "projects/quarterEnd/src/main.ts",
  190. "polyfills": "projects/quarterEnd/src/polyfills.ts",
  191. "tsConfig": "projects/quarterEnd/tsconfig.app.json",
  192. "assets": [
  193. "projects/quarterEnd/src/favicon.ico",
  194. "projects/quarterEnd/src/assets"
  195. ],
  196. "styles": [
  197. "projects/quarterEnd/src/styles.css"
  198. ],
  199. "scripts": [],
  200. "es5BrowserSupport": true
  201. },
  202. "configurations": {
  203. "production": {
  204. "fileReplacements": [
  205. {
  206. "replace": "projects/quarterEnd/src/environments/environment.ts",
  207. "with": "projects/quarterEnd/src/environments/environment.prod.ts"
  208. }
  209. ],
  210. "optimization": true,
  211. "outputHashing": "all",
  212. "sourceMap": false,
  213. "extractCss": true,
  214. "namedChunks": false,
  215. "aot": true,
  216. "extractLicenses": true,
  217. "vendorChunk": false,
  218. "buildOptimizer": true,
  219. "budgets": [
  220. {
  221. "type": "initial",
  222. "maximumWarning": "2mb",
  223. "maximumError": "5mb"
  224. }
  225. ]
  226. }
  227. }
  228. },
  229. "serve": {
  230. "builder": "@angular-devkit/build-angular:dev-server",
  231. "options": {
  232. "browserTarget": "quarterEnd:build"
  233. },
  234. "configurations": {
  235. "production": {
  236. "browserTarget": "quarterEnd:build:production"
  237. }
  238. }
  239. },
  240. "extract-i18n": {
  241. "builder": "@angular-devkit/build-angular:extract-i18n",
  242. "options": {
  243. "browserTarget": "quarterEnd:build"
  244. }
  245. },
  246. "test": {
  247. "builder": "@angular-devkit/build-angular:karma",
  248. "options": {
  249. "main": "projects/quarterEnd/src/test.ts",
  250. "polyfills": "projects/quarterEnd/src/polyfills.ts",
  251. "tsConfig": "projects/quarterEnd/tsconfig.spec.json",
  252. "karmaConfig": "projects/quarterEnd/karma.conf.js",
  253. "styles": [
  254. "projects/quarterEnd/src/styles.css"
  255. ],
  256. "scripts": [],
  257. "assets": [
  258. "projects/quarterEnd/src/favicon.ico",
  259. "projects/quarterEnd/src/assets"
  260. ]
  261. }
  262. },
  263. "lint": {
  264. "builder": "@angular-devkit/build-angular:tslint",
  265. "options": {
  266. "tsConfig": [
  267. "projects/quarterEnd/tsconfig.app.json",
  268. "projects/quarterEnd/tsconfig.spec.json"
  269. ],
  270. "exclude": [
  271. "**/node_modules/**"
  272. ]
  273. }
  274. }
  275. }
  276. },
  277. "quarterEnd-e2e": {
  278. "root": "projects/quarterEnd-e2e/",
  279. "projectType": "application",
  280. "prefix": "",
  281. "architect": {
  282. "e2e": {
  283. "builder": "@angular-devkit/build-angular:protractor",
  284. "options": {
  285. "protractorConfig": "projects/quarterEnd-e2e/protractor.conf.js",
  286. "devServerTarget": "quarterEnd:serve"
  287. },
  288. "configurations": {
  289. "production": {
  290. "devServerTarget": "quarterEnd:serve:production"
  291. }
  292. }
  293. },
  294. "lint": {
  295. "builder": "@angular-devkit/build-angular:tslint",
  296. "options": {
  297. "tsConfig": "projects/quarterEnd-e2e/tsconfig.e2e.json",
  298. "exclude": [
  299. "**/node_modules/**"
  300. ]
  301. }
  302. }
  303. }
  304. }
  305. }
  306. }
  307.  
  308. Schema validation failed with the following errors:
  309. Data path ".builders['app-shell']" should have required property 'class'.
  310. Error: Schema validation failed with the following errors:
  311. Data path ".builders['app-shell']" should have required property 'class'.
  312. at MergeMapSubscriber._registry.compile.pipe.operators_1.concatMap.validatorResult [as project]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement