-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
{
"name": "buf-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next dev",
"build": "next build",
"generate": "buf generate",
"start:production": "next start",
"lint": "next lint",
"test": "jest",
"ci": "npm run generate && npm run build && npm run lint && npm run test"
},
"dependencies": {
"@bufbuild/jest-environment-jsdom": "^0.1.1",
"@bufbuild/protobuf": "^2.2.3",
"@connectrpc/connect": "^2.0.0",
"@connectrpc/connect-next": "^2.0.0",
"@connectrpc/connect-node": "^2.0.0",
"@connectrpc/connect-web": "^2.0.0",
"next": "15.1.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@bufbuild/buf": "^1.48.0",
"@bufbuild/protoc-gen-es": "^2.2.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}