forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 986 Bytes
/
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
{
"name": "buf-fastify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx server.ts",
"client": "tsx client.ts",
"generate": "buf generate buf.build/connectrpc/eliza",
"build": "tsc --noEmit",
"test": "tap --typecheck --allow-empty-coverage --disable-coverage",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-fastify": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"@fastify/cors": "^9.0.1",
"fastify": "^4.28.1",
"tsx": "^4.19.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.39.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@types/node": "^22.5.2",
"@types/tap": "^15.0.12",
"tap": "^21.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}