mirror of
https://github.com/sern-handler/automata
synced 2026-06-06 01:16:51 +00:00
28 lines
816 B
JSON
28 lines
816 B
JSON
{
|
|
"name": "sern-automata",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"repository": "https://github.com/sern-handler/automata.git",
|
|
"author": "Izan Gil <66965250+SrIzan10@users.noreply.github.com>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"build:api": "yarn workspace api build",
|
|
"build:frontend": "yarn workspace frontend build",
|
|
"start:api": "yarn workspace api start",
|
|
"start:frontend": "yarn workspace frontend start",
|
|
"dev": "concurrently \"yarn workspace frontend dev\" \"yarn workspace api dev\" \"yarn workspace database dev\""
|
|
},
|
|
"//": [
|
|
"postgres: \"cd dev/postgresql && docker compose up\""
|
|
],
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"tsc-node": "^0.0.3",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"packageManager": "yarn@4.0.2"
|
|
}
|