-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "kuilu",
"version": "1.0.0",
"description": "Kuilu - Sistema Digital de Gestão de Filas - Sua vez, sem perder tempo",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && mvn spring-boot:run",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && mvn clean package",
"build:frontend": "cd frontend && npm run build",
"start": "npm run start:backend & npm run start:frontend",
"start:backend": "cd backend && mvn spring-boot:run",
"start:frontend": "cd frontend && npm start",
"install:all": "npm install && cd backend && mvn clean install && cd ../frontend && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}