Project

General

Profile

1
{
2
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
  "version": 1,
4
  "newProjectRoot": "projects",
5
  "projects": {
6
    "open-science-observatory-ui": {
7
      "root": "",
8
      "sourceRoot": "src",
9
      "projectType": "application",
10
      "prefix": "app",
11
      "schematics": {},
12
      "architect": {
13
        "build": {
14
          "builder": "@angular-devkit/build-angular:browser",
15
          "options": {
16
            "outputPath": "dist/open-science-observatory-ui",
17
            "index": "src/index.html",
18
            "main": "src/main.ts",
19
            "polyfills": "src/polyfills.ts",
20
            "tsConfig": "src/tsconfig.app.json",
21
            "assets": [
22
              "src/favicon.ico",
23
              "src/assets"
24
            ],
25
            "styles": [
26
              "src/styles.css",
27
              "node_modules/font-awesome/css/font-awesome.css"
28
            ],
29
            "scripts": [
30
              "node_modules/jquery/dist/jquery.min.js",
31
              "node_modules/uikit/dist/js/uikit.min.js",
32
              "node_modules/uikit/dist/js/uikit-icons.min.js"
33
            ],
34
            "aot": false,
35
            "vendorChunk": true,
36
            "extractLicenses": false,
37
            "buildOptimizer": false,
38
            "sourceMap": true,
39
            "optimization": false,
40
            "namedChunks": true
41
          },
42
          "configurations": {
43
            "production": {
44
              "fileReplacements": [
45
                {
46
                  "replace": "src/environments/environment.ts",
47
                  "with": "src/environments/environment.prod.ts"
48
                }
49
              ],
50
              "optimization": true,
51
              "outputHashing": "all",
52
              "sourceMap": false,
53
              "namedChunks": false,
54
              "aot": true,
55
              "extractLicenses": true,
56
              "vendorChunk": false,
57
              "buildOptimizer": true,
58
              "budgets": [
59
                {
60
                  "type": "initial",
61
                  "maximumWarning": "2mb",
62
                  "maximumError": "5mb"
63
                }
64
              ]
65
            },
66
            "beta": {
67
              "fileReplacements": [
68
                {
69
                  "replace": "src/environments/environment.ts",
70
                  "with": "src/environments/environment.beta.ts"
71
                }
72
              ],
73
              "optimization": true,
74
              "outputHashing": "all",
75
              "sourceMap": false,
76
              "namedChunks": false,
77
              "aot": true,
78
              "extractLicenses": true,
79
              "vendorChunk": false,
80
              "buildOptimizer": true,
81
              "budgets": [
82
                {
83
                  "type": "initial",
84
                  "maximumWarning": "2mb",
85
                  "maximumError": "5mb"
86
                }
87
              ]
88
            }
89
          },
90
          "defaultConfiguration": ""
91
        },
92
        "serve": {
93
          "builder": "@angular-devkit/build-angular:dev-server",
94
          "options": {
95
            "browserTarget": "open-science-observatory-ui:build"
96
          },
97
          "configurations": {
98
            "production": {
99
              "browserTarget": "open-science-observatory-ui:build:production"
100
            }
101
          }
102
        },
103
        "extract-i18n": {
104
          "builder": "@angular-devkit/build-angular:extract-i18n",
105
          "options": {
106
            "browserTarget": "open-science-observatory-ui:build"
107
          }
108
        },
109
        "test": {
110
          "builder": "@angular-devkit/build-angular:karma",
111
          "options": {
112
            "main": "src/test.ts",
113
            "polyfills": "src/polyfills.ts",
114
            "tsConfig": "src/tsconfig.spec.json",
115
            "karmaConfig": "src/karma.conf.js",
116
            "styles": [
117
              "src/styles.css"
118
            ],
119
            "scripts": [],
120
            "assets": [
121
              "src/favicon.ico",
122
              "src/assets"
123
            ]
124
          }
125
        },
126
        "lint": {
127
          "builder": "@angular-devkit/build-angular:tslint",
128
          "options": {
129
            "tsConfig": [
130
              "src/tsconfig.app.json",
131
              "src/tsconfig.spec.json"
132
            ],
133
            "exclude": [
134
              "**/node_modules/**"
135
            ]
136
          }
137
        }
138
      }
139
    },
140
    "open-science-observatory-ui-e2e": {
141
      "root": "e2e/",
142
      "projectType": "application",
143
      "prefix": "",
144
      "architect": {
145
        "e2e": {
146
          "builder": "@angular-devkit/build-angular:protractor",
147
          "options": {
148
            "protractorConfig": "e2e/protractor.conf.js",
149
            "devServerTarget": "open-science-observatory-ui:serve"
150
          },
151
          "configurations": {
152
            "production": {
153
              "devServerTarget": "open-science-observatory-ui:serve:production"
154
            }
155
          }
156
        },
157
        "lint": {
158
          "builder": "@angular-devkit/build-angular:tslint",
159
          "options": {
160
            "tsConfig": "e2e/tsconfig.e2e.json",
161
            "exclude": [
162
              "**/node_modules/**"
163
            ]
164
          }
165
        }
166
      }
167
    }
168
  },
169
  "defaultProject": "open-science-observatory-ui"
170
}
(4-4/8)