* feat: new proxy package * chore: update nx workspace * chore: remove unused codegen lib * chore: add swc-node as build dependencies * chore: remove unused demo-app-e2e app * chore: reorganize demo apps * feat: working cross-engine proxy * chore: update docs * fix: readme file export * chore: update nextjs lib * chore: keep nextjs code
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "demo-express-app",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/demo-express-app/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/webpack:webpack",
|
|
"outputs": ["{options.outputPath}"],
|
|
"defaultConfiguration": "production",
|
|
"options": {
|
|
"target": "node",
|
|
"compiler": "tsc",
|
|
"outputPath": "dist/apps/demo-express-app",
|
|
"main": "apps/demo-express-app/src/main.ts",
|
|
"tsConfig": "apps/demo-express-app/tsconfig.app.json",
|
|
"assets": ["apps/demo-express-app/src/assets"],
|
|
"isolatedConfig": true,
|
|
"webpackConfig": "apps/demo-express-app/webpack.config.js"
|
|
},
|
|
"configurations": {
|
|
"development": {},
|
|
"production": {}
|
|
}
|
|
},
|
|
"serve": {
|
|
"executor": "@nx/js:node",
|
|
"defaultConfiguration": "development",
|
|
"options": {
|
|
"buildTarget": "demo-express-app:build"
|
|
},
|
|
"configurations": {
|
|
"development": {
|
|
"buildTarget": "demo-express-app:build:development"
|
|
},
|
|
"production": {
|
|
"buildTarget": "demo-express-app:build:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/demo-express-app/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
"options": {
|
|
"jestConfig": "apps/demo-express-app/jest.config.ts",
|
|
"passWithNoTests": true
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"codeCoverage": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|