forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 KB
/
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
35
36
{
"name": "buf-esbuild",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run generate && esbuild src/index.tsx --serve=localhost:3000 --servedir=www --outdir=www --bundle",
"build": "esbuild src/index.tsx --bundle --outfile=dist/out.js",
"typecheck": "tsc --noEmit",
"test": "jest",
"generate": "buf generate buf.build/connectrpc/eliza",
"ci": "npm run generate && npm run typecheck && npm run build && npm run test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@bufbuild/buf": "^1.39.0",
"@bufbuild/protobuf": "^1.10.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.23.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}