mirror of
https://github.com/tedkulp/vidgrab
synced 2026-03-05 13:20:27 -05:00
162 lines
4.0 KiB
JSON
162 lines
4.0 KiB
JSON
{
|
|
"version": 1,
|
|
"projects": {
|
|
"api": {
|
|
"root": "apps/api",
|
|
"sourceRoot": "apps/api/src",
|
|
"projectType": "application",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@nrwl/node:build",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/apps/api",
|
|
"main": "apps/api/src/main.ts",
|
|
"tsConfig": "apps/api/tsconfig.app.json",
|
|
"assets": ["apps/api/src/assets"]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"optimization": true,
|
|
"extractLicenses": true,
|
|
"inspect": false,
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/api/src/environments/environment.ts",
|
|
"with": "apps/api/src/environments/environment.prod.ts"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"serve": {
|
|
"builder": "@nrwl/node:execute",
|
|
"options": {
|
|
"buildTarget": "api:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/api/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/apps/api"],
|
|
"options": {
|
|
"jestConfig": "apps/api/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"api-interfaces": {
|
|
"root": "libs/api-interfaces",
|
|
"sourceRoot": "libs/api-interfaces/src",
|
|
"projectType": "library",
|
|
"architect": {
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["libs/api-interfaces/**/*.ts"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"client": {
|
|
"root": "apps/client",
|
|
"sourceRoot": "apps/client",
|
|
"projectType": "application",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@nrwl/next:build",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"root": "apps/client",
|
|
"outputPath": "dist/apps/client"
|
|
},
|
|
"configurations": {
|
|
"production": {}
|
|
}
|
|
},
|
|
"serve": {
|
|
"builder": "@nrwl/next:server",
|
|
"options": {
|
|
"buildTarget": "client:build",
|
|
"dev": true
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "client:build:production",
|
|
"dev": false
|
|
}
|
|
}
|
|
},
|
|
"export": {
|
|
"builder": "@nrwl/next:export",
|
|
"options": {
|
|
"buildTarget": "client:build:production"
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/apps/client"],
|
|
"options": {
|
|
"jestConfig": "apps/client/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/client/**/*.{ts,tsx,js,jsx}"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"defaultCollection": "@nrwl/angular"
|
|
},
|
|
"schematics": {
|
|
"@nrwl/angular": {
|
|
"application": {
|
|
"linter": "eslint"
|
|
},
|
|
"library": {
|
|
"linter": "eslint"
|
|
},
|
|
"storybook-configuration": {
|
|
"linter": "eslint"
|
|
}
|
|
},
|
|
"@nrwl/angular:application": {
|
|
"style": "scss",
|
|
"linter": "eslint",
|
|
"unitTestRunner": "jest",
|
|
"e2eTestRunner": "cypress"
|
|
},
|
|
"@nrwl/angular:library": {
|
|
"style": "scss",
|
|
"linter": "eslint",
|
|
"unitTestRunner": "jest"
|
|
},
|
|
"@nrwl/angular:component": {
|
|
"style": "scss"
|
|
},
|
|
"@nrwl/react": {
|
|
"application": {
|
|
"babel": true
|
|
}
|
|
},
|
|
"@nrwl/next": {
|
|
"application": {
|
|
"style": "css",
|
|
"linter": "eslint"
|
|
}
|
|
}
|
|
},
|
|
"defaultProject": "client"
|
|
}
|