You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
333 lines
9.3 KiB
333 lines
9.3 KiB
{
|
|
"version": 1,
|
|
"cli": {
|
|
"defaultCollection": "@nrwl/nest"
|
|
},
|
|
"defaultProject": "api",
|
|
"schematics": {
|
|
"@nrwl/angular:application": {
|
|
"linter": "eslint",
|
|
"unitTestRunner": "jest",
|
|
"e2eTestRunner": "cypress"
|
|
},
|
|
"@nrwl/angular:library": {
|
|
"linter": "eslint",
|
|
"unitTestRunner": "jest"
|
|
},
|
|
"@nrwl/nest": {},
|
|
"@nrwl/angular:component": {}
|
|
},
|
|
"projects": {
|
|
"api": {
|
|
"root": "apps/api",
|
|
"sourceRoot": "apps/api/src",
|
|
"projectType": "application",
|
|
"prefix": "api",
|
|
"schematics": {},
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@nrwl/node:build",
|
|
"options": {
|
|
"outputPath": "dist/apps/api",
|
|
"main": "apps/api/src/main.ts",
|
|
"tsConfig": "apps/api/tsconfig.app.json",
|
|
"assets": ["apps/api/src/assets"]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"generatePackageJson": true,
|
|
"optimization": true,
|
|
"extractLicenses": true,
|
|
"inspect": false,
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/api/src/environments/environment.ts",
|
|
"with": "apps/api/src/environments/environment.prod.ts"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"outputs": ["{options.outputPath}"]
|
|
},
|
|
"serve": {
|
|
"builder": "@nrwl/node:execute",
|
|
"options": {
|
|
"buildTarget": "api:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/api/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "apps/api/jest.config.js",
|
|
"passWithNoTests": true
|
|
},
|
|
"outputs": ["coverage/apps/api"]
|
|
}
|
|
}
|
|
},
|
|
"client": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "apps/client",
|
|
"sourceRoot": "apps/client/src",
|
|
"prefix": "gf",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"outputPath": "dist/apps/client",
|
|
"index": "apps/client/src/index.html",
|
|
"main": "apps/client/src/main.ts",
|
|
"polyfills": "apps/client/src/polyfills.ts",
|
|
"tsConfig": "apps/client/tsconfig.app.json",
|
|
"assets": [
|
|
"apps/client/src/assets",
|
|
{
|
|
"glob": "assetlinks.json",
|
|
"input": "apps/client/src/assets",
|
|
"output": "./.well-known"
|
|
},
|
|
{
|
|
"glob": "CHANGELOG.md",
|
|
"input": "",
|
|
"output": "./assets"
|
|
},
|
|
{
|
|
"glob": "LICENSE",
|
|
"input": "",
|
|
"output": "./assets"
|
|
},
|
|
{
|
|
"glob": "robots.txt",
|
|
"input": "apps/client/src/assets",
|
|
"output": "./"
|
|
},
|
|
{
|
|
"glob": "sitemap.xml",
|
|
"input": "apps/client/src/assets",
|
|
"output": "./"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/ionicons/dist/ionicons",
|
|
"output": "./ionicons"
|
|
},
|
|
{
|
|
"glob": "**/*.js",
|
|
"input": "node_modules/ionicons/dist/",
|
|
"output": "./"
|
|
}
|
|
],
|
|
"styles": ["apps/client/src/styles.scss"],
|
|
"scripts": ["node_modules/marked/lib/marked.js"],
|
|
"vendorChunk": true,
|
|
"extractLicenses": false,
|
|
"buildOptimizer": false,
|
|
"sourceMap": true,
|
|
"optimization": false,
|
|
"namedChunks": true
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/client/src/environments/environment.ts",
|
|
"with": "apps/client/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"optimization": true,
|
|
"outputHashing": "all",
|
|
"sourceMap": false,
|
|
"namedChunks": false,
|
|
"extractLicenses": true,
|
|
"vendorChunk": false,
|
|
"buildOptimizer": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "6kb",
|
|
"maximumError": "10kb"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"outputs": ["{options.outputPath}"],
|
|
"defaultConfiguration": ""
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"options": {
|
|
"browserTarget": "client:build",
|
|
"proxyConfig": "apps/client/proxy.conf.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "client:build:production"
|
|
}
|
|
}
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "client:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/client/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "apps/client/jest.config.js",
|
|
"passWithNoTests": true
|
|
},
|
|
"outputs": ["coverage/apps/client"]
|
|
}
|
|
}
|
|
},
|
|
"client-e2e": {
|
|
"root": "apps/client-e2e",
|
|
"sourceRoot": "apps/client-e2e/src",
|
|
"projectType": "application",
|
|
"architect": {
|
|
"e2e": {
|
|
"builder": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/client-e2e/cypress.json",
|
|
"tsConfig": "apps/client-e2e/tsconfig.e2e.json",
|
|
"devServerTarget": "client:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "client:serve:production"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"common": {
|
|
"root": "libs/common",
|
|
"sourceRoot": "libs/common/src",
|
|
"projectType": "library",
|
|
"architect": {
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["libs/common/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/libs/common"],
|
|
"options": {
|
|
"jestConfig": "libs/common/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"ui": {
|
|
"projectType": "library",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "libs/ui",
|
|
"sourceRoot": "libs/ui/src",
|
|
"prefix": "gf",
|
|
"architect": {
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/libs/ui"],
|
|
"options": {
|
|
"jestConfig": "libs/ui/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["libs/ui/src/**/*.ts", "libs/ui/src/**/*.html"]
|
|
}
|
|
},
|
|
"storybook": {
|
|
"builder": "@nrwl/storybook:storybook",
|
|
"options": {
|
|
"uiFramework": "@storybook/angular",
|
|
"port": 4400,
|
|
"config": {
|
|
"configFolder": "libs/ui/.storybook"
|
|
}
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
},
|
|
"build-storybook": {
|
|
"builder": "@nrwl/storybook:build",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"uiFramework": "@storybook/angular",
|
|
"outputPath": "dist/storybook/ui",
|
|
"config": {
|
|
"configFolder": "libs/ui/.storybook"
|
|
}
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"ui-e2e": {
|
|
"root": "apps/ui-e2e",
|
|
"sourceRoot": "apps/ui-e2e/src",
|
|
"projectType": "application",
|
|
"architect": {
|
|
"e2e": {
|
|
"builder": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/ui-e2e/cypress.json",
|
|
"devServerTarget": "ui:storybook",
|
|
"tsConfig": "apps/ui-e2e/tsconfig.json"
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"devServerTarget": "ui:storybook:ci"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/ui-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|