-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.63 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.63 KB
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": "grpchat-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"deploy": "./scripts/deploy.sh",
"build": "next build",
"start": "next start",
"lint": "next lint",
"proto": "grpc_tools_node_protoc --proto_path=./proto --js_out=import_style=commonjs,binary:./proto --grpc_out=grpc_js:./proto --ts_out=grpc_js:./proto --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts ./proto/chat.proto",
"proto2": "grpc_tools_node_protoc --plugin=node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt outputClientImpl=true --ts_proto_opt outputServices=grpc-js --ts_proto_opt useOptionals=messages --ts_proto_opt esModuleInterop=true --ts_proto_opt stringEnums=true --ts_proto_out src/gen",
"build-img": "./scripts/build.sh",
"update-ecs": "./scripts/update_ecs_task.sh",
"send": "./scripts/send.sh"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.3",
"@types/node": "20.6.4",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.16",
"eslint": "8.50.0",
"eslint-config-next": "13.5.2",
"google-protobuf": "^3.21.2",
"next": "13.5.2",
"postcss": "8.4.30",
"prettier": "^3.0.3",
"protoc-gen-js": "^3.21.2",
"protoc-gen-ts": "^0.8.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.69.0",
"styled-components": "^6.0.8",
"tailwindcss": "3.3.3",
"typescript": "4.9.5",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.7",
"@types/ws": "^8.5.6",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3"
}
}