-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 911 Bytes
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
{
"name": "buf-vite",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "npm run generate && vite --port 3000",
"build": "tsc && vite build",
"generate": "buf generate",
"test": "vitest run",
"coverage": "vitest run --coverage",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.56.0",
"@bufbuild/protobuf": "^2.6.3",
"@bufbuild/protoc-gen-es": "^2.6.3",
"@connectrpc/connect": "^2.0.3",
"@connectrpc/connect-web": "^2.0.3",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^26.1.0",
"typescript": "^5.9.2",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}