-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 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
{
"name": "buf-express",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx server.ts",
"client": "tsx client.ts",
"generate": "buf generate",
"build": "tsc --noEmit",
"test": "node --loader ts-node/esm --no-warnings --test connect.test.ts server.test.ts",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@bufbuild/protobuf": "^2.6.3",
"@connectrpc/connect": "^2.0.3",
"@connectrpc/connect-express": "^2.0.3",
"@connectrpc/connect-node": "^2.0.3",
"@connectrpc/connect-web": "^2.0.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"tsx": "^4.20.3"
},
"devDependencies": {
"@bufbuild/buf": "^1.56.0",
"@bufbuild/protoc-gen-es": "^2.6.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}