-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "queue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compose:down:dev": "docker-compose -f docker-compose.dev.yml down",
"compose:down": "docker-compose -f docker-compose.yml down",
"compose:up:dev": "docker-compose -f docker-compose.dev.yml up -d --build",
"compose:up": "docker-compose -f docker-compose.yml up -d --build",
"copy:env:back": "cd ./app/backend && cp .env.example .env",
"db:docker:up": "docker run -d --name db-pg -e POSTGRES_USER=root -e POSTGRES_PASSWORD=root -p 5432:5432 postgres:latest",
"install:back": "cd ./app/backend && npm install",
"install:front": "cd ./app/frontend && npm install",
"install:whats": "cd ./app/whatsapp-api && npm install",
"lint": "cd ./app/backend && npm run lint && cd ../frontend && npm run lint && cd ../whatsapp-api && npm run lint",
"prepare": "npm run install:back && npm run copy:env:back && npm run install:front && npm run install:whats",
"start:back:dev": "cd ./app/backend && npm run dev",
"start:back": "cd ./app/backend && npm start",
"start:front:dev": "cd ./app/frontend && npm run dev",
"start:front": "cd ./app/frontend && npm start",
"start:whats:dev": "cd ./app/whatsapp-api && npm run dev",
"start:whats": "cd ./app/whatsapp-api && npm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}