-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "gpon-data-parser",
"private": true,
"scripts": {
"install:backend": "npm install --prefix backend",
"install:frontend": "npm install --prefix frontend",
"dev": "npm --prefix backend run dev && npm --prefix frontend run dev",
"dev:backend": "npm --prefix backend run dev",
"dev:frontend": "npm --prefix frontend run dev",
"parser": "node --no-warnings --experimental-strip-types parser/index.ts",
"services:up": "docker-compose -f backend/infra/compose.yaml up -d",
"services:down": "docker-compose -f backend/infra/compose.yaml down -v",
"services:psql": "docker exec -it gpon-database psql -U local_user -d local_db",
"start:all": "concurrently \"npm run parser\" \"npm run services:up\" \"npm run install:all\"",
"install:all": "concurrently \"npm run install:backend && npm run dev:backend\" \"npm run install:frontend && npm run dev:frontend\""
},
"engines": {
"node": "24.9.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}