Angular project using NgRx pattern to manage state of a system

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "users-projects-companies-NgRx": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:application": {
  10. "strict": true
  11. }
  12. },
  13. "root": "",
  14. "sourceRoot": "src",
  15. "prefix": "app",
  16. "architect": {
  17. "build": {
  18. "builder": "@angular-devkit/build-angular:browser",
  19. "options": {
  20. "outputPath": "dist/challenge-ng-rx",
  21. "index": "src/index.html",
  22. "main": "src/main.ts",
  23. "polyfills": "src/polyfills.ts",
  24. "tsConfig": "tsconfig.app.json",
  25. "assets": [
  26. "src/favicon.ico",
  27. "src/assets"
  28. ],
  29. "styles": [
  30. "src/styles.css",
  31. "node_modules/primeicons/primeicons.css",
  32. "node_modules/primeng/resources/themes/lara-light-blue/theme.css",
  33. "node_modules/primeng/resources/primeng.min.css",
  34. "node_modules/bootstrap/dist/css/bootstrap.min.css",
  35. "node_modules/font-awesome/css/font-awesome.min.css"
  36. ],
  37. "scripts": [
  38. "node_modules/jquery/dist/jquery.min.js",
  39. "node_modules/bootstrap/dist/js/bootstrap.min.js"
  40. ]
  41. },
  42. "configurations": {
  43. "production": {
  44. "budgets": [
  45. {
  46. "type": "initial",
  47. "maximumWarning": "500kb",
  48. "maximumError": "1mb"
  49. },
  50. {
  51. "type": "anyComponentStyle",
  52. "maximumWarning": "2kb",
  53. "maximumError": "4kb"
  54. }
  55. ],
  56. "fileReplacements": [
  57. {
  58. "replace": "src/environments/environment.ts",
  59. "with": "src/environments/environment.prod.ts"
  60. }
  61. ],
  62. "outputHashing": "all"
  63. },
  64. "development": {
  65. "buildOptimizer": false,
  66. "optimization": false,
  67. "vendorChunk": true,
  68. "extractLicenses": false,
  69. "sourceMap": true,
  70. "namedChunks": true
  71. }
  72. },
  73. "defaultConfiguration": "production"
  74. },
  75. "serve": {
  76. "builder": "@angular-devkit/build-angular:dev-server",
  77. "configurations": {
  78. "production": {
  79. "browserTarget": "users-projects-companies-NgRx:build:production"
  80. },
  81. "development": {
  82. "browserTarget": "users-projects-companies-NgRx:build:development"
  83. }
  84. },
  85. "defaultConfiguration": "development"
  86. },
  87. "extract-i18n": {
  88. "builder": "@angular-devkit/build-angular:extract-i18n",
  89. "options": {
  90. "browserTarget": "users-projects-companies-NgRx:build"
  91. }
  92. },
  93. "test": {
  94. "builder": "@angular-devkit/build-angular:karma",
  95. "options": {
  96. "main": "src/test.ts",
  97. "polyfills": "src/polyfills.ts",
  98. "tsConfig": "tsconfig.spec.json",
  99. "karmaConfig": "karma.conf.js",
  100. "assets": [
  101. "src/favicon.ico",
  102. "src/assets"
  103. ],
  104. "styles": [
  105. "src/styles.css"
  106. ],
  107. "scripts": []
  108. }
  109. }
  110. }
  111. }
  112. },
  113. "defaultProject": "users-projects-companies-NgRx"
  114. }

Powered by TurnKey Linux.