2019-08-09 13:38:51 +02:00
|
|
|
{
|
2020-04-16 12:34:36 +02:00
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
|
"version": 1,
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
"projects": {
|
|
|
|
"framadate": {
|
|
|
|
"projectType": "application",
|
|
|
|
"schematics": {
|
|
|
|
"@schematics/angular:component": {
|
|
|
|
"style": "scss"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"root": "",
|
|
|
|
"sourceRoot": "src",
|
2020-04-22 12:56:18 +02:00
|
|
|
"prefix": "app",
|
2020-04-16 12:34:36 +02:00
|
|
|
"architect": {
|
|
|
|
"build": {
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/framadate",
|
|
|
|
"index": "src/index.html",
|
|
|
|
"main": "src/main.ts",
|
|
|
|
"polyfills": "src/polyfills.ts",
|
|
|
|
"tsConfig": "tsconfig.app.json",
|
2021-11-17 15:06:36 +01:00
|
|
|
"assets": [
|
|
|
|
"src/favicon.ico",
|
|
|
|
"src/assets"
|
|
|
|
],
|
2020-04-16 12:34:36 +02:00
|
|
|
"styles": [
|
2020-04-22 12:56:18 +02:00
|
|
|
"node_modules/fork-awesome/css/fork-awesome.min.css",
|
2020-05-12 19:16:23 +02:00
|
|
|
"node_modules/bulma-switch/dist/css/bulma-switch.min.css",
|
2021-11-17 15:06:36 +01:00
|
|
|
"node_modules/primeicons/primeicons.css",
|
|
|
|
"node_modules/primeng/resources/themes/saga-blue/theme.css",
|
|
|
|
"node_modules/primeng/resources/primeng.min.css",
|
2020-04-22 12:56:18 +02:00
|
|
|
"src/styles.scss"
|
2020-04-16 12:34:36 +02:00
|
|
|
],
|
|
|
|
"scripts": [
|
2020-05-04 16:54:31 +02:00
|
|
|
"node_modules/chart.js/dist/Chart.min.js",
|
2020-04-16 12:34:36 +02:00
|
|
|
"node_modules/marked/lib/marked.js",
|
|
|
|
"node_modules/prismjs/prism.js",
|
|
|
|
"node_modules/prismjs/components/prism-css.min.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
"with": "src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"optimization": true,
|
|
|
|
"outputHashing": "all",
|
|
|
|
"sourceMap": false,
|
|
|
|
"extractCss": true,
|
|
|
|
"namedChunks": false,
|
2020-05-01 19:10:17 +02:00
|
|
|
"aot": true,
|
2020-04-16 12:34:36 +02:00
|
|
|
"extractLicenses": true,
|
|
|
|
"vendorChunk": false,
|
|
|
|
"buildOptimizer": true,
|
2020-05-01 19:10:17 +02:00
|
|
|
"crossOrigin": "anonymous",
|
2020-04-16 12:34:36 +02:00
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
"maximumError": "5mb"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
"maximumWarning": "6kb",
|
|
|
|
"maximumError": "10kb"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"options": {
|
2020-11-11 12:14:01 +01:00
|
|
|
"browserTarget": "framadate:build",
|
|
|
|
"proxyConfig": "src/proxy.conf.json"
|
2020-04-16 12:34:36 +02:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"browserTarget": "framadate:build:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extract-i18n": {
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "framadate:build"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"builder": "@angular-builders/jest:run",
|
2020-04-22 12:56:18 +02:00
|
|
|
"options": {}
|
2020-04-16 12:34:36 +02:00
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
2021-11-17 15:06:36 +01:00
|
|
|
"tsConfig": [
|
|
|
|
"tsconfig.app.json",
|
|
|
|
"tsconfig.spec.json",
|
|
|
|
"e2e/tsconfig.json"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules/**"
|
|
|
|
]
|
2020-04-16 12:34:36 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"e2e": {
|
|
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
|
|
"options": {
|
|
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
|
|
"devServerTarget": "framadate:serve"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"devServerTarget": "framadate:serve:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-04-22 12:56:18 +02:00
|
|
|
"defaultProject": "framadate",
|
|
|
|
"cli": {
|
|
|
|
"analytics": "0ba9c0a9-850f-4c5f-8124-cbe6f4c79ef1"
|
|
|
|
}
|
2019-08-09 15:14:23 +02:00
|
|
|
}
|