forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 924 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
{
"name": "buf-vanilla-node",
"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": "node --loader ts-node/esm --no-warnings --test connect.test.ts client.test.ts server.test.ts",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"cors": "^2.8.5",
"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/cors": "^2.8.17",
"@types/node": "^22.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}