-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 748 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 748 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
26
27
28
{
"name": "waveflow",
"version": "1.0.0",
"description": "wave in flow",
"main": "index.js",
"repository": "git@github.com:adeyahya/waveflow.git",
"author": "Ade Yahya",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"www"
]
},
"private": true,
"scripts": {
"dev": "concurrently --names 'www,server' -c 'green,yellow' yarn:dev:www yarn:dev:server",
"dev:www": "yarn --cwd www dev",
"dev:server": "cargo-watch -x 'run' -C ./server",
"build": "yarn build:server && yarn build:www",
"build:www": "yarn --cwd www build",
"build:server": "cd server && cargo build --release",
"pack": "./scripts/pack.mjs"
},
"devDependencies": {
"concurrently": "^6.2.0"
}
}