ScreenSharingThing/package.json

25 lines
802 B
JSON
Raw Normal View History

2021-12-04 15:59:25 +00:00
{
2022-06-20 18:03:55 +00:00
"name": "ScreenSharingThing",
"packageManager": "yarn@3.1.1",
2023-06-08 14:33:34 +00:00
"version": "0.1.0",
2022-06-20 18:03:55 +00:00
"scripts": {
2023-07-02 13:51:49 +00:00
"build:api": "jrpc compile API/main.jrpc -o=ts-node:_API/src && yarn workspace @hibas123/screen-api build",
"build:client": "yarn workspace @hibas123/screen-client build",
"build:server": "yarn workspace @hibas123/screen-server run build",
"build": "run-s build:api build:server build:client",
"dev:client": "yarn workspace @hibas123/screen-client dev",
"dev:server": "yarn workspace @hibas123/screen-server dev",
"dev": "run-p dev:client dev:server"
2022-06-20 18:03:55 +00:00
},
2023-07-02 13:51:49 +00:00
"workspaces": [
"Server",
"Client",
"_API"
],
2022-06-20 18:03:55 +00:00
"devDependencies": {
2023-07-02 13:51:49 +00:00
"npm-run-all": "^4.1.5"
2022-06-20 18:03:55 +00:00
},
"dependencies": {
2023-07-02 13:51:49 +00:00
"@hibas123/jrpcgen": "~1.0.26"
2022-06-20 18:03:55 +00:00
}
}