forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "buf-astro",
"type": "module",
"version": "0.0.0",
"scripts": {
"start": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"generate": "buf generate buf.build/connectrpc/eliza",
"test": "npm run playwright:install && playwright test",
"playwright:install": "playwright install",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/react": "^3.6.0",
"@nanostores/react": "^0.7.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.11.3",
"nanostores": "^0.10.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@bufbuild/buf": "^1.34.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",
"@playwright/test": "^1.45.0",
"typescript": "^5.5.2"
}
}