2018-11-27 09:06:26 +00:00
|
|
|
{
|
2018-11-30 13:26:03 +00:00
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
|
"version": 1,
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
"projects": {
|
|
|
|
"dashboard": {
|
2020-03-30 13:40:22 +00:00
|
|
|
"projectType": "application",
|
|
|
|
"schematics": {
|
|
|
|
"@schematics/angular:component": {
|
|
|
|
"style": "scss"
|
2021-08-02 15:06:09 +00:00
|
|
|
},
|
|
|
|
"@schematics/angular:application": {
|
|
|
|
"strict": true
|
2020-03-30 13:40:22 +00:00
|
|
|
}
|
|
|
|
},
|
2018-11-30 13:26:03 +00:00
|
|
|
"root": "",
|
|
|
|
"sourceRoot": "src",
|
|
|
|
"prefix": "app",
|
|
|
|
"architect": {
|
|
|
|
"build": {
|
2023-06-13 16:10:15 +00:00
|
|
|
"builder": "@angular-builders/custom-webpack:browser",
|
2018-11-30 13:26:03 +00:00
|
|
|
"options": {
|
2023-06-13 16:10:15 +00:00
|
|
|
"customWebpackConfig": {
|
|
|
|
"path": "./extra-webpack.config.ts"
|
|
|
|
},
|
2021-02-04 14:57:52 +00:00
|
|
|
"allowedCommonJsDependencies": [
|
|
|
|
"uuid",
|
|
|
|
"keycloak-js",
|
|
|
|
"css-element-queries",
|
|
|
|
"humanize-duration",
|
2022-04-11 11:15:59 +00:00
|
|
|
"apexcharts",
|
2022-07-26 17:59:01 +00:00
|
|
|
"short-uuid",
|
|
|
|
"moment",
|
|
|
|
"flat",
|
|
|
|
"base64-js",
|
2023-06-22 16:56:37 +00:00
|
|
|
"js-sha256",
|
|
|
|
"utility-types"
|
2021-02-04 14:57:52 +00:00
|
|
|
],
|
2018-11-30 13:26:03 +00:00
|
|
|
"outputPath": "dist",
|
|
|
|
"index": "src/index.html",
|
|
|
|
"main": "src/main.ts",
|
2023-06-22 16:56:37 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2020-03-30 13:40:22 +00:00
|
|
|
"tsConfig": "tsconfig.app.json",
|
2021-08-02 15:06:09 +00:00
|
|
|
"inlineStyleLanguage": "scss",
|
2022-11-30 02:57:13 +00:00
|
|
|
"assets": [
|
|
|
|
"src/favicon.ico",
|
|
|
|
"src/assets",
|
|
|
|
"src/appConfig.json",
|
|
|
|
"src/authConfig.json",
|
|
|
|
"src/appConfig.stage.json",
|
|
|
|
"src/authConfig.stage.json"
|
|
|
|
],
|
2019-05-13 12:02:44 +00:00
|
|
|
"styles": [
|
2019-06-20 15:40:23 +00:00
|
|
|
"src/styles/core.scss",
|
2019-05-13 12:02:44 +00:00
|
|
|
{
|
2021-03-05 10:29:56 +00:00
|
|
|
"input": "src/styles/themes/main.scss",
|
2021-08-02 15:06:09 +00:00
|
|
|
"bundleName": "main-theme",
|
|
|
|
"inject": false
|
2019-05-13 12:02:44 +00:00
|
|
|
},
|
|
|
|
{
|
2021-02-25 12:07:07 +00:00
|
|
|
"input": "src/styles/themes/persian-green.scss",
|
2021-08-02 15:06:09 +00:00
|
|
|
"bundleName": "persian-green-theme",
|
|
|
|
"inject": false
|
2021-10-06 05:16:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"input": "src/styles/themes/solitude.scss",
|
|
|
|
"bundleName": "solitude-theme",
|
|
|
|
"inject": false
|
2022-01-14 08:17:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"input": "src/styles/themes/eastern.scss",
|
|
|
|
"bundleName": "eastern-theme",
|
|
|
|
"inject": false
|
2019-05-13 12:02:44 +00:00
|
|
|
}
|
|
|
|
],
|
2018-11-30 13:26:03 +00:00
|
|
|
"scripts": []
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
"maximumError": "5mb"
|
2020-03-30 13:40:22 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
"maximumWarning": "6kb",
|
|
|
|
"maximumError": "10kb"
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|
2021-08-02 15:06:09 +00:00
|
|
|
],
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
"with": "src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
],
|
2021-08-25 14:52:01 +00:00
|
|
|
"outputHashing": "all",
|
|
|
|
"sourceMap": true
|
2019-11-19 14:30:54 +00:00
|
|
|
},
|
2021-08-02 15:06:09 +00:00
|
|
|
"development": {
|
|
|
|
"buildOptimizer": false,
|
|
|
|
"optimization": false,
|
|
|
|
"vendorChunk": true,
|
|
|
|
"extractLicenses": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"namedChunks": true
|
2022-11-30 02:57:13 +00:00
|
|
|
},
|
|
|
|
"stage": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
"with": "src/environments/environment.stage.ts"
|
|
|
|
}
|
|
|
|
]
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|
2021-08-02 15:06:09 +00:00
|
|
|
},
|
|
|
|
"defaultConfiguration": "production"
|
2018-11-30 13:26:03 +00:00
|
|
|
},
|
|
|
|
"serve": {
|
2023-06-13 16:10:15 +00:00
|
|
|
"builder": "@angular-builders/custom-webpack:dev-server",
|
2018-11-30 13:26:03 +00:00
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"browserTarget": "dashboard:build:production"
|
2019-11-19 14:30:54 +00:00
|
|
|
},
|
2021-08-02 15:06:09 +00:00
|
|
|
"development": {
|
|
|
|
"browserTarget": "dashboard:build:development"
|
|
|
|
},
|
2022-11-30 02:57:13 +00:00
|
|
|
"stage": {
|
|
|
|
"browserTarget": "dashboard:build:development,stage"
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|
2021-08-02 15:06:09 +00:00
|
|
|
},
|
|
|
|
"defaultConfiguration": "development"
|
2018-11-30 13:26:03 +00:00
|
|
|
},
|
|
|
|
"test": {
|
2023-06-13 16:10:15 +00:00
|
|
|
"builder": "@angular-builders/custom-webpack:karma",
|
2018-11-30 13:26:03 +00:00
|
|
|
"options": {
|
|
|
|
"main": "src/test.ts",
|
2023-06-22 16:56:37 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2020-03-30 13:40:22 +00:00
|
|
|
"tsConfig": "tsconfig.spec.json",
|
|
|
|
"karmaConfig": "karma.conf.js",
|
2021-08-02 15:06:09 +00:00
|
|
|
"inlineStyleLanguage": "scss",
|
2022-11-30 02:57:13 +00:00
|
|
|
"assets": [
|
|
|
|
"src/favicon.ico",
|
|
|
|
"src/assets",
|
|
|
|
"src/appConfig.json",
|
|
|
|
"src/authConfig.json",
|
|
|
|
"src/appConfig.stage.json",
|
|
|
|
"src/authConfig.stage.json"
|
|
|
|
],
|
2021-01-16 12:40:40 +00:00
|
|
|
"styles": [
|
|
|
|
"src/styles/core.scss",
|
|
|
|
{
|
2021-03-05 10:29:56 +00:00
|
|
|
"input": "src/styles/themes/main.scss",
|
2021-08-02 15:06:09 +00:00
|
|
|
"bundleName": "main-theme",
|
|
|
|
"inject": false
|
2021-01-16 12:40:40 +00:00
|
|
|
},
|
|
|
|
{
|
2021-02-25 12:07:07 +00:00
|
|
|
"input": "src/styles/themes/persian-green.scss",
|
2021-08-02 15:06:09 +00:00
|
|
|
"bundleName": "persian-green-theme",
|
|
|
|
"inject": false
|
2021-10-06 05:16:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"input": "src/styles/themes/solitude.scss",
|
|
|
|
"bundleName": "solitude-theme",
|
|
|
|
"inject": false
|
2022-01-14 08:17:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"input": "src/styles/themes/eastern.scss",
|
|
|
|
"bundleName": "eastern-theme",
|
|
|
|
"inject": false
|
2019-05-13 12:02:44 +00:00
|
|
|
}
|
2022-04-19 08:11:55 +00:00
|
|
|
]
|
2021-08-02 15:06:09 +00:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"ci": {
|
|
|
|
"karmaConfig": "karma-ci.conf.js"
|
|
|
|
}
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|
2023-06-23 13:29:26 +00:00
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-eslint/builder:lint",
|
|
|
|
"options": {
|
|
|
|
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
|
|
|
|
}
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|
2018-11-27 09:06:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-06-26 13:12:03 +00:00
|
|
|
"cli": {
|
|
|
|
"analytics": false
|
|
|
|
}
|
2018-11-30 13:26:03 +00:00
|
|
|
}
|