-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "buf-webpack-cjs",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"start": "npm run build && webpack serve --mode development",
"build": "webpack",
"test": "jest",
"generate": "buf generate buf.build/connectrpc/eliza",
"ci": "npm run generate && npm run build && npm run test"
},
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@bufbuild/buf": "^1.46.0",
"@bufbuild/protobuf": "^2.2.1",
"@bufbuild/protoc-gen-es": "^2.2.1",
"@connectrpc/connect": "^2.0.0-rc.2",
"@connectrpc/connect-web": "^2.0.0-rc.2",
"@types/node": "^22.5.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"css-loader": "^7.1.2",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}