gomtm 0.0.394 → 0.0.396

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +20 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gomtm",
3
- "version": "0.0.394",
3
+ "version": "0.0.396",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -82,15 +82,19 @@
82
82
  }
83
83
  },
84
84
  "scripts": {
85
+ "prepare": "panda codegen",
85
86
  "build": "next build",
86
- "mtxcli": "tsx src/main.ts",
87
- "dev": "pnpm with-env npx next dev",
88
- "dev:win": "dotenv -e ./env/win.env -- next dev",
87
+ "dev": "with-env npx next dev",
88
+ "dev:watch": "bun concurrently 'bun run dev' 'bun run codegen:local --watch'",
89
89
  "with-env": "dotenv -e ./env/dev.env --",
90
- "run1": "tsx src/cli.ts",
91
- "release": "npm publish"
90
+ "graphql-codegen": "graphql-codegen",
91
+ "codegen": "graphql-codegen --config codegen.ts",
92
+ "codegen:local": "graphql-codegen --config codegen-local.ts"
92
93
  },
93
94
  "dependencies": {
95
+ "@apollo/server": "^4.10.4",
96
+ "@as-integrations/next": "^3.0.0",
97
+ "@parcel/watcher": "^2.4.0",
94
98
  "@bufbuild/protobuf": "^1.8.0",
95
99
  "@connectrpc/connect": "^1.4.0",
96
100
  "@connectrpc/connect-web": "^1.4.0",
@@ -98,6 +102,7 @@
98
102
  "@tanstack/react-query-devtools": "^5.28.14",
99
103
  "@tanstack/react-query-next-experimental": "^5.28.14",
100
104
  "commander": "^12.0.0",
105
+ "graphql": "^16.8.1",
101
106
  "edge-runtime": "^2.5.9",
102
107
  "github-slugger": "^2.0.0",
103
108
  "jose": "^5.2.4",
@@ -120,6 +125,14 @@
120
125
  "zustand": "^4.5.2"
121
126
  },
122
127
  "devDependencies": {
128
+ "@graphql-codegen/add": "^5.0.0",
129
+ "@graphql-codegen/cli": "5.0.0",
130
+ "@graphql-codegen/typescript-operations": "^4.0.1",
131
+ "@pandacss/dev": "^0.41.0",
132
+ "@types/node": "^20.14.6",
133
+ "autoprefixer": "^10.4.16",
134
+ "concurrently": "^8.2.2",
135
+ "postcss": "^8.4.38",
123
136
  "@babel/core": "^7.24.0",
124
137
  "@bufbuild/buf": "^1.30.0",
125
138
  "@bufbuild/jest-environment-jsdom": "^0.1.1",
@@ -136,6 +149,7 @@
136
149
  "@edge-runtime/jest-environment": "^2.3.10",
137
150
  "@edge-runtime/jest-expect": "^1.2.0",
138
151
  "@edge-runtime/ponyfill": "^2.4.2",
152
+ "@graphql-codegen/typescript-react-query": "^6.1.0",
139
153
  "@jest/globals": "^29.7.0",
140
154
  "@netlify/plugin-nextjs": "^4.29.2",
141
155
  "@playwright/test": "^1.28.1",
@@ -172,10 +186,8 @@
172
186
  "@typescript-eslint/eslint-plugin": "^6.0.0",
173
187
  "@typescript-eslint/parser": "^6.0.0",
174
188
  "@vitejs/plugin-react-swc": "^3.6.0",
175
- "autoprefixer": "^10.0.1",
176
189
  "babel-jest": "^29.7.0",
177
190
  "clean-webpack-plugin": "^4.0.0",
178
- "concurrently": "^7.6.0",
179
191
  "copy-webpack-plugin": "^12.0.2",
180
192
  "cross-env": "^7.0.3",
181
193
  "css-loader": "^6.10.0",
@@ -197,14 +209,10 @@
197
209
  "extract-files": "^13.0.0",
198
210
  "file-loader": "^6.2.0",
199
211
  "fork-ts-checker-webpack-plugin": "^7.2.13",
200
- "http-server": "^14.1.1",
201
212
  "jsdom": "^24.0.0",
202
213
  "less": "^4.1.3",
203
214
  "less-loader": "^11.1.0",
204
215
  "mini-css-extract-plugin": "^2.7.6",
205
- "npm-run-all": "^4.1.5",
206
- "playwright": "^1.28.1",
207
- "postcss": "^8",
208
216
  "postcss-loader": "^6.2.1",
209
217
  "postcss-preset-env": "^9.3.0",
210
218
  "prettier": "^3.2.5",
@@ -225,7 +233,6 @@
225
233
  "ts-loader": "^9.5.1",
226
234
  "ts-node": "^10.9.1",
227
235
  "tsc-alias": "^1.8.8",
228
- "tsup": "^8.0.2",
229
236
  "tsx": "^4.7.1",
230
237
  "typescript": "^5.4.5",
231
238
  "vite": "^5.1.4",