mirror of
https://github.com/sern-handler/automata
synced 2026-06-06 01:16:51 +00:00
31 lines
860 B
JSON
31 lines
860 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/*",
|
|
"!repos/*"
|
|
],
|
|
"scripts": {
|
|
"build:api": "yarn workspace api build",
|
|
"build:database": "yarn workspace database build",
|
|
"start:api": "yarn workspace api start",
|
|
"db:deploy": "yarn workspace database deploy",
|
|
"dev": "concurrently \"yarn workspace api dev\" \"yarn workspace database dev\"",
|
|
"setup": "bash apps/api/util/setup.sh"
|
|
},
|
|
"//": [
|
|
"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"
|
|
}
|