mirror of https://github.com/ghostfolio/ghostfolio
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.
311 lines
8.5 KiB
311 lines
8.5 KiB
{
|
|
"nodes": {
|
|
"common": {
|
|
"name": "common",
|
|
"type": "lib",
|
|
"data": {
|
|
"root": "libs/common",
|
|
"name": "common",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/common/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"libs/common/**/*.ts"
|
|
]
|
|
},
|
|
"configurations": {},
|
|
"parallelism": true,
|
|
"cache": true
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": [
|
|
"{workspaceRoot}/coverage/libs/common"
|
|
],
|
|
"options": {
|
|
"jestConfig": "libs/common/jest.config.ts",
|
|
"passWithNoTests": true
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"codeCoverage": true
|
|
}
|
|
},
|
|
"parallelism": true,
|
|
"inputs": [
|
|
"default",
|
|
"^production",
|
|
"{workspaceRoot}/jest.preset.js"
|
|
],
|
|
"cache": true
|
|
}
|
|
},
|
|
"implicitDependencies": []
|
|
}
|
|
},
|
|
"api": {
|
|
"name": "api",
|
|
"type": "app",
|
|
"data": {
|
|
"root": "apps/api",
|
|
"name": "api",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/api/src",
|
|
"projectType": "application",
|
|
"prefix": "api",
|
|
"tags": [],
|
|
"generators": {},
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/webpack:webpack",
|
|
"options": {
|
|
"compiler": "tsc",
|
|
"deleteOutputPath": false,
|
|
"main": "apps/api/src/main.ts",
|
|
"outputPath": "dist/apps/api",
|
|
"sourceMap": true,
|
|
"target": "node",
|
|
"tsConfig": "apps/api/tsconfig.app.json",
|
|
"webpackConfig": "apps/api/webpack.config.js"
|
|
},
|
|
"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}"
|
|
],
|
|
"parallelism": true,
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"production",
|
|
"^production"
|
|
],
|
|
"cache": true
|
|
},
|
|
"copy-assets": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
{
|
|
"command": "shx rm -rf dist/apps/api"
|
|
},
|
|
{
|
|
"command": "shx mkdir -p dist/apps/api/assets/locales"
|
|
},
|
|
{
|
|
"command": "shx cp -r apps/api/src/assets/* dist/apps/api/assets"
|
|
},
|
|
{
|
|
"command": "shx cp -r apps/client/src/locales/* dist/apps/api/assets/locales"
|
|
}
|
|
],
|
|
"parallel": false
|
|
},
|
|
"configurations": {},
|
|
"parallelism": true
|
|
},
|
|
"serve": {
|
|
"executor": "@nx/js:node",
|
|
"options": {
|
|
"buildTarget": "api:build"
|
|
},
|
|
"configurations": {},
|
|
"parallelism": true
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"apps/api/**/*.ts"
|
|
]
|
|
},
|
|
"configurations": {},
|
|
"parallelism": true,
|
|
"cache": true
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"options": {
|
|
"jestConfig": "apps/api/jest.config.ts",
|
|
"passWithNoTests": true
|
|
},
|
|
"outputs": [
|
|
"{workspaceRoot}/coverage/apps/api"
|
|
],
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"codeCoverage": true
|
|
}
|
|
},
|
|
"parallelism": true,
|
|
"inputs": [
|
|
"default",
|
|
"^production",
|
|
"{workspaceRoot}/jest.preset.js"
|
|
],
|
|
"cache": true
|
|
}
|
|
},
|
|
"implicitDependencies": []
|
|
}
|
|
},
|
|
"ui": {
|
|
"name": "ui",
|
|
"type": "lib",
|
|
"data": {
|
|
"root": "libs/ui",
|
|
"name": "ui",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"sourceRoot": "libs/ui/src",
|
|
"prefix": "gf",
|
|
"tags": [],
|
|
"generators": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"targets": {
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": [
|
|
"{workspaceRoot}/coverage/libs/ui"
|
|
],
|
|
"options": {
|
|
"jestConfig": "libs/ui/jest.config.ts",
|
|
"tsConfig": "libs/ui/tsconfig.spec.json",
|
|
"passWithNoTests": true
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"codeCoverage": true
|
|
}
|
|
},
|
|
"parallelism": true,
|
|
"inputs": [
|
|
"default",
|
|
"^production",
|
|
"{workspaceRoot}/jest.preset.js"
|
|
],
|
|
"cache": true
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"libs/ui/src/**/*.ts",
|
|
"libs/ui/src/**/*.html"
|
|
]
|
|
},
|
|
"configurations": {},
|
|
"parallelism": true,
|
|
"cache": true
|
|
},
|
|
"storybook": {
|
|
"executor": "@storybook/angular:start-storybook",
|
|
"options": {
|
|
"browserTarget": "ui:build-storybook",
|
|
"compodoc": false,
|
|
"configDir": "libs/ui/.storybook",
|
|
"port": 4400
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
},
|
|
"parallelism": true
|
|
},
|
|
"build-storybook": {
|
|
"executor": "@storybook/angular:build-storybook",
|
|
"outputs": [
|
|
"{options.outputDir}"
|
|
],
|
|
"options": {
|
|
"browserTarget": "ui:build-storybook",
|
|
"compodoc": false,
|
|
"configDir": "libs/ui/.storybook",
|
|
"outputDir": "dist/apps/client/development/storybook",
|
|
"styles": [
|
|
"apps/client/src/assets/fonts/inter.css",
|
|
"apps/client/src/styles/theme.scss",
|
|
"apps/client/src/styles.scss"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
},
|
|
"parallelism": true,
|
|
"inputs": [
|
|
"default",
|
|
"^production",
|
|
"{workspaceRoot}/.storybook/**/*",
|
|
"{projectRoot}/.storybook/**/*",
|
|
"{projectRoot}/tsconfig.storybook.json"
|
|
],
|
|
"cache": true
|
|
},
|
|
"static-storybook": {
|
|
"executor": "@nx/web:file-server",
|
|
"options": {
|
|
"buildTarget": "ui:build-storybook",
|
|
"staticFilePath": "dist/storybook"
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"buildTarget": "ui:build-storybook:ci"
|
|
}
|
|
},
|
|
"parallelism": true,
|
|
"continuous": true
|
|
}
|
|
},
|
|
"implicitDependencies": []
|
|
}
|
|
}
|
|
},
|
|
"externalNodes": {},
|
|
"dependencies": {
|
|
"common": [],
|
|
"api": [
|
|
{
|
|
"source": "api",
|
|
"target": "common",
|
|
"type": "static"
|
|
}
|
|
],
|
|
"ui": [
|
|
{
|
|
"source": "ui",
|
|
"target": "common",
|
|
"type": "static"
|
|
}
|
|
]
|
|
},
|
|
"version": "6.0",
|
|
"errors": [],
|
|
"computedAt": 1772289338068
|
|
}
|