2024-02-14 00:16:21 +03:00
|
|
|
{
|
2024-02-20 16:35:09 +03:00
|
|
|
"name": "twenty-server",
|
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2024-02-14 00:16:21 +03:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
},
|
2024-02-20 16:35:09 +03:00
|
|
|
"command": {
|
|
|
|
"executor": "nx:run-commands",
|
|
|
|
"dependsOn": [
|
|
|
|
"build"
|
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"cwd": "packages/twenty-server",
|
|
|
|
"command": "node dist/src/command.js"
|
|
|
|
}
|
|
|
|
},
|
2024-02-14 00:16:21 +03:00
|
|
|
"test:debug": {
|
|
|
|
"dependsOn": [
|
|
|
|
"^build"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|