forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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-parcel",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"scripts": {
"start": "npm run generate && parcel src/index.html -p 3000 --log-level error",
"build": "parcel build src/index.html --log-level error",
"test": "jest",
"generate": "buf generate buf.build/connectrpc/eliza",
"check": "tsc --noEmit",
"ci": "npm run generate && npm run check && npm run build && npm run test"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@bufbuild/buf": "^1.35.1",
"@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.3",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"ts-jest": "^29.2.4"
},
"dependencies": {
"@parcel/babel-preset-env": "^2.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}