-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"generate:auth_proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts.cmd --ts_out=./src/proto ./src/proto/auth.proto",
"generate:codeexec_proto": "protoc -I=./src/proto ./src/proto/auth.proto --js_out=import_style=commonjs:./src/proto --grpc-web_out=import_style=typescript,mode=grpcwebtext:./src/proto ",
"generate:genql": "nodemon --exec 'genql --schema ./graphql/schema.graphql --output ./graphql/generated/genql' --watch 'graphql/schema.graphql'"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@grpc/grpc-js": "^1.10.6",
"@grpc/proto-loader": "^0.7.10",
"@hookform/resolvers": "^3.3.4",
"@improbable-eng/grpc-web": "^0.15.0",
"@monaco-editor/react": "^4.6.0",
"@mui/material": "^5.15.14",
"@prisma/client": "^5.11.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@types/js-cookie": "^3.0.6",
"aos": "^2.3.4",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"google-protobuf": "^3.21.2",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"graphql-ws": "^5.15.0",
"graphql-yoga": "^5.2.0",
"grpc-web": "^1.5.0",
"js-cookie": "^3.0.5",
"kafkajs": "^2.2.4",
"lucide-react": "^0.358.0",
"monaco-editor": "^0.47.0",
"next": "14.1.3",
"nexus": "^1.3.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.0",
"react-hot-toast": "^2.4.1",
"react-split": "^2.0.14",
"recoil": "^0.7.7",
"redis": "^4.6.13",
"split-pane-react": "^0.1.3",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"ts-proto": "^1.169.1",
"ts-protoc-gen": "^0.15.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@genql/cli": "^6.3.2",
"@types/aos": "^3.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"nodemon": "^3.1.0",
"postcss": "^8",
"prisma": "^5.11.0",
"tailwindcss": "^3.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5"
}
}