-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "eventos",
"version": "1.0.0",
"description": "<div align=\"center\" style=\"display: flex; justify-content: center; align-items: center;\"> <img src=\"./apps/front-end/public/logo.svg\" alt=\"Logo\" style=\"width: 50px; height: 50px; margin-right: 10px;\"> <h1 style=\"font-weight: bold; margin: 0;\">Convit3 Digital</h1> </div>",
"scripts": {
"dev": "run-p packages:* apps:*",
"apps:frontend" : "cd apps/front-end && npm run dev",
"apps:backend" : "cd apps/back-end && npm run start:dev",
"packages:core" : "cd packages/core && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"workspaces":[
"apps/*",
"packages/*"
]
}