Files
automata/package.json

30 lines
891 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",
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"build:api": "yarn workspace api build",
"build:database": "yarn workspace database 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"
}