mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-25 13:02:15 +03:00
e011ecbd6f
* POC: generate twenty-server package.json with Nx * Re-add passport * Fix instal --------- Co-authored-by: Charles Bochet <charles@twenty.com>
22 lines
608 B
JSON
22 lines
608 B
JSON
{
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build:packageJson": {
|
|
"executor": "@nx/js:tsc",
|
|
"dependsOn": [
|
|
"prebuild"
|
|
],
|
|
"options": {
|
|
"main": "packages/twenty-server/dist/src/main.js",
|
|
"tsConfig": "packages/twenty-server/tsconfig.json",
|
|
"outputPath": "packages/twenty-server/dist",
|
|
"updateBuildableProjectDepsInPackageJson": true
|
|
}
|
|
},
|
|
"test:debug": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
}
|
|
}
|
|
} |