forked from garethlau/floatingfile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 778 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"name": "floatingfile",
"devDependencies": {
"concurrently": "^6.2.0"
},
"scripts": {
"dev": "concurrently -n client,server,common \"yarn dev:client\" \"yarn dev:server\" \"yarn dev:common\"",
"dev:server": "yarn --cwd packages/server dev",
"dev:client": "yarn --cwd packages/client dev",
"dev:landing": "yarn --cwd packages/landing dev",
"dev:common": "yarn --cwd packages/common dev",
"build:server": "yarn --cwd packages/server build",
"build:client": "yarn --cwd packages/client build",
"deploy:app": "./scripts/deploy-app.sh",
"deploy:landing": "yarn --cwd packages/landing build"
},
"dependencies": {
"@octokit/core": "^3.3.1"
}
}