mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 16:43:36 +00:00
53 lines
997 B
JSON
53 lines
997 B
JSON
{
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"name": "web",
|
|
"projectType": "application",
|
|
"sourceRoot": "web/src",
|
|
"targets": {
|
|
"install": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "npm install --include=dev",
|
|
"cwd": "web"
|
|
}
|
|
},
|
|
"dev": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "npm run dev",
|
|
"cwd": "web"
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/.next"
|
|
],
|
|
"options": {
|
|
"command": "npm run build",
|
|
"cwd": "web"
|
|
}
|
|
},
|
|
"start": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"options": {
|
|
"command": "npm run start",
|
|
"cwd": "web"
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"scope:web",
|
|
"type:frontend"
|
|
]
|
|
}
|