Files
automata/package.json

27 lines
769 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": "yarn workspaces foreach -A run 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"
}