-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.61 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "grpc-studio",
"version": "2.0.0",
"description": "A modern web interface for testing and exploring gRPC services using server reflection",
"type": "module",
"workspaces": [
"shared",
"frontend",
"backend",
"examples/*"
],
"scripts": {
"quickstart": "node ./scripts/quick-start.mjs",
"stop": "node ./scripts/stop.mjs",
"predev": "npm run stop",
"dev": "npm run build:shared && concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"predev:all": "npm run stop",
"dev:all": "npm run build:shared && concurrently \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:petstore\" \"npm run dev:bookstore\"",
"predev:multi": "npm run stop",
"dev:multi": "npm run build:shared && concurrently \"npm run dev:frontend\" \"npm run dev:backend:multi\"",
"dev:connect": "npm run build:shared && sh -c 'TARGET_HOST=${npm_config_target%:*} TARGET_PORT=${npm_config_target#*:} concurrently \"npm run dev:frontend\" \"npm run dev:backend\"'",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && GRPC_STUDIO_CONFIG=../config/backend.yaml npm run dev",
"dev:backend:multi": "cd backend && GRPC_STUDIO_CONFIG=../config/backend-multi-target.yaml npm run dev",
"dev:petstore": "cd examples/petstore && npm start",
"dev:bookstore": "cd examples/bookstore && npm start",
"build": "npm run build:frontend",
"build:shared": "cd shared && npm run build",
"build:frontend": "npm run build:shared && cd frontend && npm run build",
"start": "cd backend && GRPC_STUDIO_CONFIG=../config/backend.yaml npm start",
"start:multi": "cd backend && GRPC_STUDIO_CONFIG=../config/backend-multi-target.yaml npm start",
"install:all": "npm install",
"lint": "cd frontend && npm run lint",
"test": "cd frontend && npm test",
"demo:capture": "playwright test e2e/demo-capture.spec.ts --project=chromium --workers=1",
"demo:gif": "node ./scripts/demo-gif.mjs",
"demo:mp4": "node ./scripts/demo-mp4.mjs"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"concurrently": "^8.2.2",
"js-yaml": "^4.1.0",
"knip": "^6.26.0"
},
"overrides": {
"eslint": "8.57.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prsawant/gRPC-Studio.git"
},
"keywords": [
"grpc",
"testing",
"ui",
"react",
"node",
"typescript",
"protobuf",
"server-reflection",
"developer-tools"
],
"author": "Prasad Sawant",
"license": "BSD-3-Clause",
"dependencies": {
"protobufjs": "^8.7.1"
}
}