-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
33 lines (33 loc) · 973 Bytes
/
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
{
"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.9.4",
"@astrojs/react": "^4.1.2",
"@nanostores/react": "^0.8.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"astro": "^5.1.2",
"nanostores": "^0.11.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.48.0",
"@bufbuild/protobuf": "^2.2.3",
"@bufbuild/protoc-gen-es": "^2.2.3",
"@connectrpc/connect": "^2.0.0",
"@connectrpc/connect-web": "^2.0.0",
"@playwright/test": "^1.49.1",
"typescript": "^5.7.2"
}
}