-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 915 Bytes
/
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
{
"name": "bis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server:dev": "cd server && npm run dev",
"orders:dev": "cd client && npm run dev",
"business:dev": "cd website && npm start",
"server": "cd server && npm start",
"orders": "cd client && npm start",
"business": "cd website && npm run static",
"dev": "concurrently \"npm run server:dev\" \"npm run orders:dev\" \"npm run business:dev\"",
"start": "concurrently \"npm run server\" \"npm run orders\" \"npm run business\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirsadikov/DinnerChamp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mirsadikov/DinnerChamp/issues"
},
"homepage": "https://github.com/mirsadikov/DinnerChamp#readme",
"dependencies": {
"concurrently": "^8.0.1"
}
}