-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.23 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
30
31
32
{
"name": "delivery-app",
"version": "1.0.0",
"description": "Aplicativo de delivery",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "npm run --prefix ./back-end start && npm run --prefix ./front-end start",
"install": "npm run install-backend && npm run install-frontend",
"install-backend": "cd ./back-end && npm install",
"install-frontend": "cd ./front-end && npm install",
"dev": "npm run --prefix ./back-end dev && npm run --prefix ./front-end start",
"db:reset": "npm run --prefix ./back-end db:reset:dev",
"test:backend": "npm run --prefix ./back-end test",
"test:frontend": "npm run --prefix ./front-end test",
"test:backend:coverage": "npm run --prefix ./back-end test:coverage",
"test:frontend:coverage": "npm run --prefix ./front-end test:coverage",
"test": "npm run test:backend && npm run test:frontend",
"test:coverage": "npm run test:backend:coverage && npm run test:frontend:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ImVictorM/Dona-Birita"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ImVictorM/Dona-Birita/issues"
},
"homepage": "https://github.com/ImVictorM/Dona-Birita#readme"
}