-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 876 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 876 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
{
"name": "buf-fastify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx server.ts",
"client": "tsx client.ts",
"generate": "buf generate",
"build": "tsc --noEmit",
"test": "tap --typecheck --allow-empty-coverage --disable-coverage",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@bufbuild/protobuf": "^2.6.3",
"@connectrpc/connect": "^2.0.3",
"@connectrpc/connect-fastify": "^2.0.3",
"@connectrpc/connect-node": "^2.0.3",
"@connectrpc/connect-web": "^2.0.3",
"@fastify/cors": "^11.1.0",
"fastify": "^5.4.0",
"tsx": "^4.20.3"
},
"devDependencies": {
"@bufbuild/buf": "^1.56.0",
"@bufbuild/protoc-gen-es": "^2.6.3",
"@types/node": "^24.2.0",
"tap": "^21.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}