-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 905 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
{
"name": "ark-manager-web",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mbround18/ark-manager-web.git",
"author": "Michael Bruno <[email protected]>",
"license": "MIT",
"devDependencies": {
"@auto-it/git-tag": "11.3.0",
"@auto-it/upload-assets": "11.3.0",
"auto": "11.3.0",
"concurrently": "9.1.0",
"nodemon": "3.1.7"
},
"scripts": {
"client": "yarn workspace client",
"serve:client": "yarn client dev",
"serve:agent": "nodemon -e rs,toml --watch ./agent --exec 'cargo run --bin agent'",
"serve:server": "nodemon -e rs,toml --watch ./server --exec 'cargo run --bin server'",
"dev": "concurrently -c green,blue,red \"yarn:serve:*\"",
"lint": "cargo fmt && yarn client pretty-quick",
"release": "auto shipit"
},
"workspaces": [
"./client"
],
"packageManager": "[email protected]"
}