forked from simrail/simrail.pro
26 lines
721 B
JSON
26 lines
721 B
JSON
{
|
|
"name": "simrail-logs",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "yarn workspace backend build && yarn workspace frontend build",
|
|
"postbuild": "copyfiles --error ./LICENSE ./dist",
|
|
"start": "concurrently --kill-others-on-fail \"yarn workspace backend start\" \"yarn workspace frontend dev\""
|
|
},
|
|
"workspaces": [
|
|
"packages/backend",
|
|
"packages/frontend"
|
|
],
|
|
"author": "Aleksander <alekswilc> Wilczyński",
|
|
"license": "AGPL-3.0-only",
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.0.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"concurrently": "^9.0.1",
|
|
"copyfiles": "^2.4.1",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"type": "module"
|
|
}
|