-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 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
34
35
{
"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",
"ci": "npm run generate && npm run typecheck && npm run build && npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@bufbuild/buf": "^1.56.0",
"@bufbuild/protobuf": "^2.6.3",
"@bufbuild/protoc-gen-es": "^2.6.3",
"@connectrpc/connect": "^2.0.3",
"@connectrpc/connect-web": "^2.0.3",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"esbuild": "^0.25.8",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}