32 lines
872 B
JSON
32 lines
872 B
JSON
{
|
|
"name": "uecko-presupuestador",
|
|
"version": "1.0.0",
|
|
"author": "Rodax Software <dev@rodax-software.com>",
|
|
"license": "ISC",
|
|
"private": true,
|
|
"workspaces": [
|
|
"shared"
|
|
],
|
|
"scripts": {
|
|
"test": "jest --verbose",
|
|
"client": "cd client; yarn run dev:debug",
|
|
"server": "cd server; yarn run dev:debug",
|
|
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
|
|
"clean": "concurrently --kill-others-on-fail \"cd server; yarn run clean\" \"cd shared; yarn run clean\" \"cd client; yarn run clean\" \"rm -rf node_modules\""
|
|
},
|
|
"engines": {
|
|
"node": ">=18.18.0",
|
|
"yarn": ">=1.22"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "4.1.0",
|
|
"@types/jest": "^29.5.6",
|
|
"eslint-plugin-jest": "^27.4.2",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1"
|
|
},
|
|
"dependencies": {
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|