-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "grpc-explorer-web",
"version": "1.1.0",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:prod": "NEXT_TELEMETRY_DISABLED=1 next build",
"start": "node deployment/start-server.js",
"start:prod": "NODE_ENV=production node deployment/start-server.js",
"lint": "next lint",
"docker:build": "cd deployment && docker-compose build",
"docker:up": "cd deployment && docker-compose up -d",
"docker:down": "cd deployment && docker-compose down",
"docker:logs": "cd deployment && docker-compose logs -f",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:grpc": "node deployment/test-grpc-reflection.js"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.3",
"@grpc/proto-loader": "^0.7.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lru-cache": "^11.1.0",
"lucide-react": "^0.511.0",
"next": "^14.1.0",
"protobufjs": "^7.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "^3.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.5.3",
"tailwindcss": "3.4.1",
"vitest": "^4.1.0"
}
}