-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.94 KB
/
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
29
30
31
32
33
34
35
36
37
{
"name": "trunkless-whiteboard",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "[email protected]:wgslr/trunkless-whiteboard.git",
"scripts": {
"bootstrap": "lerna bootstrap",
"protoc:client": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto ./protocol/protocol.proto --ts_proto_opt=esModuleInterop=true,unrecognizedEnum=false,oneof=unions --ts_proto_out=packages/client/src --experimental_allow_proto3_optional",
"protoc:server": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto ./protocol/protocol.proto --ts_proto_opt=esModuleInterop=true,unrecognizedEnum=false,oneof=unions --ts_proto_out=packages/backend/src --experimental_allow_proto3_optional",
"protoc:benchmarks": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto ./protocol/protocol.proto --ts_proto_opt=esModuleInterop=true,unrecognizedEnum=false,oneof=unions --ts_proto_out=packages/benchmarks/src --experimental_allow_proto3_optional",
"protoc": "concurrently \"yarn protoc:client\" \"yarn protoc:server\" \"yarn protoc:benchmarks\"",
"clean": "rm --recursive --force dist",
"build:prod": "yarn run clean && lerna run build:prod && cp --recursive packages/backend/dist ./ && cp --recursive packages/client/build ./dist/",
"start:client": "cd packages/client && yarn start",
"start:server": "cd packages/backend && yarn dev",
"watch:encoding": "cd packages/encoding && yarn watch",
"build:encoding": "cd packages/encoding && yarn build",
"start:dev": "yarn build:encoding && concurrently \"yarn start:client\" \"yarn start:server\"",
"exec:prod": "node ./dist/index.js"
},
"devDependencies": {
"@types/uuid": "^8.3.0",
"concurrently": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"lerna": "3.22.1",
"prettier": "^2.2.1"
},
"dependencies": {
"ts-proto": "^1.69.0",
"uuid": "^8.3.2"
},
"version": "0.0.0"
}