-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 769 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "lunatrack",
"version": "0.1.0",
"private": true,
"scripts": {
"install:all": "npm --prefix server install && npm --prefix client install",
"dev": "concurrently \"npm --prefix server run dev\" \"npm --prefix client run dev\"",
"dev:http": "concurrently \"npm --prefix server run dev:http\" \"npm --prefix client run dev:http\"",
"dev:https": "concurrently \"npm --prefix server run dev:https\" \"npm --prefix client run dev:https\"",
"build": "npm --prefix server run build && npm --prefix client run build",
"start": "npm --prefix server start"
},
"scripts-addons": {
"http": "npm --prefix server run dev:http",
"https": "npm --prefix server run dev:https"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}