This repository has been archived on 2025-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx20-tsref/apps/ebitemp-api/package.json

58 lines
1.3 KiB
JSON

{
"name": "@repo/ebitemp-api",
"version": "0.0.1",
"private": true,
"nx": {
"name": "ebitemp-api",
"projectType": "application",
"sourceRoot": "apps/ebitemp-api/src",
"targets": {
"typecheck": {
"options": {
"command": "tsc --build --emitDeclarationOnly --pretty"
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "webpack-cli build",
"args": [
"node-env=production"
]
},
"configurations": {
"development": {
"args": [
"node-env=development"
]
}
}
},
"serve": {
"executor": "@nx/js:node",
"defaultConfiguration": "development",
"dependsOn": [
"build"
],
"options": {
"buildTarget": "ebitemp-api:build",
"runBuildTargetDependencies": false
},
"configurations": {
"development": {
"buildTarget": "ebitemp-api:build:development"
},
"production": {
"buildTarget": "ebitemp-api:build:production"
}
}
},
"test": {
"options": {
"passWithNoTests": true
}
}
}
}
}