-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 998 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "dz-review",
"version": "1.0.0",
"description": "where people can share reviews",
"main": "index.js",
"repository": "https://github.com/amine-louni/dz-review-web.git",
"author": "Amine Louni <[email protected]>",
"license": "MIT",
"scripts": {
"dev:front": "cd frontend && yarn dev",
"dev:back": "cd backend && yarn start:dev",
"watch:back": "cd backend && yarn watch:all",
"build:back": "cd backend && yarn build",
"install:all": "yarn && cd frontend && yarn && cd ../backend && yarn",
"watch:front": "npx kill-port 4000 && yarn build:back && concurrently -k -p \"[{name}]\" -n \"Frontend 🖼️,Backend 🔃\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn dev:front\" \"yarn dev:back\"",
"dev": "npx kill-port 4000 && concurrently -k -p \"[{name}]\" -n \"Frontend 🖼️,Backend 🔃\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn dev:front\" \"yarn watch:back\""
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}