-
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) · 769 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 769 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": "crm",
"version": "1.0.0",
"description": "CRM con Inteligencia Artificial - Sistema de gestión de relaciones con clientes potenciado por IA",
"scripts": {
"dev": "docker-compose up --build",
"dev:down": "docker-compose down",
"backend:dev": "npm run start:dev -w=backend",
"frontend:dev": "npm run dev -w=frontend",
"backend:test": "npm run test -w=backend",
"frontend:test": "npm run test -w=frontend",
"build": "npm run build --workspaces",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces"
},
"workspaces": [
"packages/backend",
"packages/frontend"
],
"keywords": ["crm", "ai", "nestjs", "react", "typescript"],
"author": "",
"license": "ISC",
"type": "commonjs"
}