Compare commits
4 Commits
@blitzjs/n
...
@blitzjs/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d87288a2e9 | ||
|
|
fdff45a592 | ||
|
|
469f55a429 | ||
|
|
e6c31704ed |
@@ -23,6 +23,7 @@
|
||||
"poor-peas-lick",
|
||||
"quiet-feet-travel",
|
||||
"silent-colts-reply",
|
||||
"swift-drinks-dress",
|
||||
"ten-rivers-burn",
|
||||
"thirty-countries-build",
|
||||
"twenty-beans-pump"
|
||||
|
||||
5
.changeset/swift-drinks-dress.md
Normal file
5
.changeset/swift-drinks-dress.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@blitzjs/next": patch
|
||||
---
|
||||
|
||||
Fix postinstall script not being found
|
||||
@@ -1,5 +1,16 @@
|
||||
# toolkit-app
|
||||
|
||||
## 1.0.1-alpha.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @blitzjs/next@2.0.0-alpha.11
|
||||
- @blitzjs/auth@2.0.0-alpha.11
|
||||
- @blitzjs/rpc@2.0.0-alpha.11
|
||||
- @blitzjs/config@2.0.0-alpha.11
|
||||
- blitz@2.0.0-alpha.11
|
||||
|
||||
## 1.0.1-alpha.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "toolkit-app",
|
||||
"version": "1.0.1-alpha.5",
|
||||
"version": "1.0.1-alpha.6",
|
||||
"scripts": {
|
||||
"start:dev": "pnpm run prisma:start && next dev",
|
||||
"buildapp": "prisma generate && next build",
|
||||
@@ -29,7 +29,7 @@
|
||||
"@blitzjs/rpc": "workspace:*",
|
||||
"@hookform/resolvers": "2.8.8",
|
||||
"@prisma/client": "3.9.0",
|
||||
"blitz": "workspace:2.0.0-alpha.10",
|
||||
"blitz": "workspace:2.0.0-alpha.11",
|
||||
"next": "12.1.1",
|
||||
"prisma": "3.9.0",
|
||||
"react": "18.0.0",
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
"test": "turbo run test",
|
||||
"clean": "turbo run clean && rm -rf node_modules",
|
||||
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
||||
"pre-publish": "pnpm i && pnpm build && changeset add && changeset version && git add . && git commit -v",
|
||||
"pre-publish": "pnpm i && changeset add && changeset version && pnpm build && git add . && git commit -v",
|
||||
"publish-release": "changeset publish && git push --follow-tags"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @blitzjs/auth
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- blitz@2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/auth",
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts",
|
||||
@@ -24,7 +24,7 @@
|
||||
"@types/secure-password": "3.1.1",
|
||||
"b64-lite": "1.4.0",
|
||||
"bad-behavior": "1.0.1",
|
||||
"blitz": "2.0.0-alpha.10",
|
||||
"blitz": "2.0.0-alpha.11",
|
||||
"cookie": "0.4.1",
|
||||
"debug": "4.3.3",
|
||||
"http": "0.0.1-security",
|
||||
@@ -35,7 +35,7 @@
|
||||
"url": "0.11.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.10",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.11",
|
||||
"@testing-library/react": "13.0.0",
|
||||
"@testing-library/react-hooks": "7.0.2",
|
||||
"@types/cookie": "0.4.1",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @blitzjs/next
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fix postinstall script not being found
|
||||
- @blitzjs/rpc@2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/next",
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "pnpm predev && pnpm watch unbuild src --wait=0.2",
|
||||
@@ -9,7 +9,7 @@
|
||||
"test": "vitest run",
|
||||
"test-watch": "vitest",
|
||||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
||||
"postinstall": "node src/scripts/postinstall.js"
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"main": "./dist/index-server.cjs",
|
||||
"module": "./dist/index-server.mjs",
|
||||
@@ -19,16 +19,17 @@
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"dist/**",
|
||||
"scripts/**",
|
||||
"eslint.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@blitzjs/rpc": "2.0.0-alpha.10",
|
||||
"@blitzjs/rpc": "2.0.0-alpha.11",
|
||||
"debug": "4.3.3",
|
||||
"fs-extra": "10.0.1",
|
||||
"react-query": "3.21.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.10",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.11",
|
||||
"@testing-library/dom": "8.13.0",
|
||||
"@testing-library/jest-dom": "5.16.3",
|
||||
"@testing-library/react": "13.0.0",
|
||||
@@ -39,7 +40,7 @@
|
||||
"@types/react": "17.0.43",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"@types/testing-library__react-hooks": "4.0.0",
|
||||
"blitz": "2.0.0-alpha.10",
|
||||
"blitz": "2.0.0-alpha.11",
|
||||
"cross-spawn": "7.0.3",
|
||||
"find-up": "4.1.0",
|
||||
"lodash.frompairs": "4.0.1",
|
||||
|
||||
@@ -11,12 +11,12 @@ const stat = promisify(fs.stat)
|
||||
|
||||
const debug = require("debug")("blitz:postinstall")
|
||||
|
||||
const isInBlitzMonorepo = fs.existsSync(path.join(__dirname, "../../src"))
|
||||
const isInBlitzMonorepo = fs.existsSync(path.join(__dirname, "../../blitz-next"))
|
||||
let isInstalledGlobally = isInBlitzMonorepo ? false : true // default
|
||||
|
||||
try {
|
||||
const maybeGlobalBlitzPath = resolveFrom(__dirname, "blitz")
|
||||
const localBlitzPath = resolveFrom.silent(process.cwd(), "blitz")
|
||||
const localBlitzPath = resolveFrom.silent(process.cwd(), "blitz/dist/index.cjs")
|
||||
isInstalledGlobally = maybeGlobalBlitzPath !== localBlitzPath
|
||||
} catch (error) {
|
||||
// noop
|
||||
@@ -95,8 +95,8 @@ function codegen() {
|
||||
try {
|
||||
const packagePath = require.resolve("blitz/package.json")
|
||||
if (packagePath) {
|
||||
const blitzPkg = require.resolve("blitz")
|
||||
return path.join(blitzPkg, "/dist/index.cjs")
|
||||
const blitzPkg = require.resolve("blitz/dist/index.cjs")
|
||||
return path.join(blitzPkg)
|
||||
}
|
||||
} catch (e) {
|
||||
//
|
||||
@@ -1,5 +1,12 @@
|
||||
# @blitzjs/rpc
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/auth@2.0.0-alpha.11
|
||||
- blitz@2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/rpc",
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts && wait-on -d 250 ../blitz-auth/dist/index-browser.d.ts",
|
||||
@@ -20,7 +20,7 @@
|
||||
"dist/**"
|
||||
],
|
||||
"dependencies": {
|
||||
"@blitzjs/auth": "2.0.0-alpha.10",
|
||||
"@blitzjs/auth": "2.0.0-alpha.11",
|
||||
"b64-lite": "1.4.0",
|
||||
"bad-behavior": "1.0.1",
|
||||
"chalk": "^4.1.0",
|
||||
@@ -30,11 +30,11 @@
|
||||
"zod": "3.10.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.10",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.11",
|
||||
"@types/debug": "4.1.7",
|
||||
"@types/react": "17.0.43",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"blitz": "2.0.0-alpha.10",
|
||||
"blitz": "2.0.0-alpha.11",
|
||||
"next": "12.1.1",
|
||||
"react": "18.0.0",
|
||||
"react-dom": "18.0.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"watch": "1.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"blitz": "2.0.0-alpha.10",
|
||||
"blitz": "2.0.0-alpha.11",
|
||||
"next": "*"
|
||||
},
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# blitz
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/generator@2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "blitz",
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "watch unbuild src --wait=0.2",
|
||||
@@ -23,7 +23,7 @@
|
||||
"blitz": "bin/blitz"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blitzjs/generator": "2.0.0-alpha.10",
|
||||
"@blitzjs/generator": "2.0.0-alpha.11",
|
||||
"arg": "5.0.1",
|
||||
"chalk": "^4.1.0",
|
||||
"console-table-printer": "2.10.0",
|
||||
@@ -47,7 +47,7 @@
|
||||
"tslog": "3.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.10",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.11",
|
||||
"@types/cookie": "0.4.1",
|
||||
"@types/cross-spawn": "6.0.2",
|
||||
"@types/debug": "4.1.7",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# @blitzjs/config
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
## 2.0.0-alpha.9
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@blitzjs/config",
|
||||
"private": true,
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "5.9.1",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# @blitzjs/generator
|
||||
|
||||
## 2.0.0-alpha.11
|
||||
|
||||
## 2.0.0-alpha.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/generator",
|
||||
"version": "2.0.0-alpha.10",
|
||||
"version": "2.0.0-alpha.11",
|
||||
"scripts": {
|
||||
"dev": "watch unbuild src --wait=0.2",
|
||||
"build": "unbuild && pnpm build:templates",
|
||||
@@ -45,7 +45,7 @@
|
||||
"vinyl": "2.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "2.0.0-alpha.10",
|
||||
"@blitzjs/config": "2.0.0-alpha.11",
|
||||
"@juanm04/cpx": "2.0.1",
|
||||
"@types/babel__core": "7.1.19",
|
||||
"@types/diff": "5.0.2",
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
"@typescript-eslint/parser": "5.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "2.0.0-alpha.10",
|
||||
"@blitzjs/config": "2.0.0-alpha.11",
|
||||
"@types/react": "17.0.43",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"react": "18.0.0",
|
||||
|
||||
267
pnpm-lock.yaml
generated
267
pnpm-lock.yaml
generated
@@ -1,4 +1,4 @@
|
||||
lockfileVersion: 5.4
|
||||
lockfileVersion: 5.3
|
||||
|
||||
importers:
|
||||
.:
|
||||
@@ -50,7 +50,7 @@ importers:
|
||||
"@types/node": 17.0.16
|
||||
"@types/preview-email": 2.0.1
|
||||
"@types/react": 17.0.43
|
||||
blitz: workspace:2.0.0-alpha.9
|
||||
blitz: workspace:2.0.0-alpha.10
|
||||
eslint: 7.32.0
|
||||
husky: 7.0.4
|
||||
jest: 27.5.1
|
||||
@@ -75,17 +75,17 @@ importers:
|
||||
"@hookform/resolvers": 2.8.8_react-hook-form@7.29.0
|
||||
"@prisma/client": 3.9.0_prisma@3.9.0
|
||||
blitz: link:../../packages/blitz
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
prisma: 3.9.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
react-hook-form: 7.29.0_react@18.0.0
|
||||
ts-node: 10.7.0_fxg3r7oju3tntkxsvleuiot4fa
|
||||
ts-node: 10.7.0_2dcdb8fdc9a6e6d9aaf2aac9443a7c28
|
||||
zod: 3.10.1
|
||||
devDependencies:
|
||||
"@next/bundle-analyzer": 12.0.8
|
||||
"@testing-library/react": 13.0.0_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react-hooks": 7.0.2_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react": 13.0.0_react-dom@18.0.0+react@18.0.0
|
||||
"@testing-library/react-hooks": 7.0.2_react-dom@18.0.0+react@18.0.0
|
||||
"@types/jest": 27.4.1
|
||||
"@types/node": 17.0.16
|
||||
"@types/preview-email": 2.0.1
|
||||
@@ -128,7 +128,7 @@ importers:
|
||||
"@types/jest": 27.4.1
|
||||
blitz: link:../../packages/blitz
|
||||
jest: 27.5.1_ts-node@10.7.0
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
prisma: 3.9.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
@@ -169,7 +169,7 @@ importers:
|
||||
"@prisma/client": 3.9.0_prisma@3.9.0
|
||||
blitz: link:../../packages/blitz
|
||||
lowdb: 3.0.0
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
prisma: 3.9.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
@@ -210,7 +210,7 @@ importers:
|
||||
"@blitzjs/next": link:../../packages/blitz-next
|
||||
"@blitzjs/rpc": link:../../packages/blitz-rpc
|
||||
blitz: link:../../packages/blitz
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
devDependencies:
|
||||
@@ -263,8 +263,8 @@ importers:
|
||||
|
||||
packages/blitz:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.9
|
||||
"@blitzjs/generator": 2.0.0-alpha.9
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.10
|
||||
"@blitzjs/generator": 2.0.0-alpha.10
|
||||
"@types/cookie": 0.4.1
|
||||
"@types/cross-spawn": 6.0.2
|
||||
"@types/debug": 4.1.7
|
||||
@@ -356,7 +356,7 @@ importers:
|
||||
|
||||
packages/blitz-auth:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.9
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.10
|
||||
"@testing-library/react": 13.0.0
|
||||
"@testing-library/react-hooks": 7.0.2
|
||||
"@types/b64-lite": 1.3.0
|
||||
@@ -368,7 +368,7 @@ importers:
|
||||
"@types/secure-password": 3.1.1
|
||||
b64-lite: 1.4.0
|
||||
bad-behavior: 1.0.1
|
||||
blitz: 2.0.0-alpha.9
|
||||
blitz: 2.0.0-alpha.10
|
||||
cookie: 0.4.1
|
||||
debug: 4.3.3
|
||||
http: 0.0.1-security
|
||||
@@ -398,8 +398,8 @@ importers:
|
||||
url: 0.11.0
|
||||
devDependencies:
|
||||
"@blitzjs/config": link:../config
|
||||
"@testing-library/react": 13.0.0_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react-hooks": 7.0.2_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react": 13.0.0_react-dom@18.0.0+react@18.0.0
|
||||
"@testing-library/react-hooks": 7.0.2_react-dom@18.0.0+react@18.0.0
|
||||
"@types/cookie": 0.4.1
|
||||
"@types/debug": 4.1.7
|
||||
"@types/jsonwebtoken": 8.5.8
|
||||
@@ -413,8 +413,8 @@ importers:
|
||||
|
||||
packages/blitz-next:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.9
|
||||
"@blitzjs/rpc": 2.0.0-alpha.9
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.10
|
||||
"@blitzjs/rpc": 2.0.0-alpha.10
|
||||
"@testing-library/dom": 8.13.0
|
||||
"@testing-library/jest-dom": 5.16.3
|
||||
"@testing-library/react": 13.0.0
|
||||
@@ -425,7 +425,7 @@ importers:
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
"@types/testing-library__react-hooks": 4.0.0
|
||||
blitz: 2.0.0-alpha.9
|
||||
blitz: 2.0.0-alpha.10
|
||||
cross-spawn: 7.0.3
|
||||
debug: 4.3.3
|
||||
find-up: 4.1.0
|
||||
@@ -444,24 +444,24 @@ importers:
|
||||
"@blitzjs/rpc": link:../blitz-rpc
|
||||
debug: 4.3.3
|
||||
fs-extra: 10.0.1
|
||||
react-query: 3.21.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
react-query: 3.21.1_react-dom@18.0.0+react@18.0.0
|
||||
devDependencies:
|
||||
"@blitzjs/config": link:../config
|
||||
"@testing-library/dom": 8.13.0
|
||||
"@testing-library/jest-dom": 5.16.3
|
||||
"@testing-library/react": 13.0.0_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react-hooks": 7.0.2_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/user-event": 13.5.0_tlwynutqiyp5mns3woioasuxnq
|
||||
"@testing-library/react": 13.0.0_react-dom@18.0.0+react@18.0.0
|
||||
"@testing-library/react-hooks": 7.0.2_react-dom@18.0.0+react@18.0.0
|
||||
"@testing-library/user-event": 13.5.0_@testing-library+dom@8.13.0
|
||||
"@types/lodash.frompairs": 4.0.6
|
||||
"@types/node": 17.0.16
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
"@types/testing-library__react-hooks": 4.0.0_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@types/testing-library__react-hooks": 4.0.0_react-dom@18.0.0+react@18.0.0
|
||||
blitz: link:../blitz
|
||||
cross-spawn: 7.0.3
|
||||
find-up: 4.1.0
|
||||
lodash.frompairs: 4.0.1
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
resolve-from: 5.0.0
|
||||
@@ -472,14 +472,14 @@ importers:
|
||||
|
||||
packages/blitz-rpc:
|
||||
specifiers:
|
||||
"@blitzjs/auth": 2.0.0-alpha.9
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.9
|
||||
"@blitzjs/auth": 2.0.0-alpha.10
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.10
|
||||
"@types/debug": 4.1.7
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
b64-lite: 1.4.0
|
||||
bad-behavior: 1.0.1
|
||||
blitz: 2.0.0-alpha.9
|
||||
blitz: 2.0.0-alpha.10
|
||||
chalk: ^4.1.0
|
||||
debug: 4.3.3
|
||||
next: 12.1.1
|
||||
@@ -497,7 +497,7 @@ importers:
|
||||
bad-behavior: 1.0.1
|
||||
chalk: 4.1.2
|
||||
debug: 4.3.3
|
||||
react-query: 3.21.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
react-query: 3.21.1_react-dom@18.0.0+react@18.0.0
|
||||
superjson: 1.8.0
|
||||
zod: 3.10.1
|
||||
devDependencies:
|
||||
@@ -506,7 +506,7 @@ importers:
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
blitz: link:../blitz
|
||||
next: 12.1.1_zpnidt7m3osuk7shl3s4oenomq
|
||||
next: 12.1.1_react-dom@18.0.0+react@18.0.0
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
typescript: 4.6.3
|
||||
@@ -521,10 +521,10 @@ importers:
|
||||
eslint-config-prettier: 8.3.0
|
||||
typescript: ^4.5.3
|
||||
dependencies:
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_z2xqbpkx26iu62rx2zdto5f5qy
|
||||
"@typescript-eslint/parser": 5.9.1_typescript@4.6.3
|
||||
eslint-config-next: 12.0.7_typescript@4.6.3
|
||||
eslint-config-prettier: 8.3.0
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_8d4b52c6a654d64d1d8b695e9b6b2fe5
|
||||
"@typescript-eslint/parser": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
eslint-config-next: 12.0.7_f066dc8242e0fb1833636efd615b2015
|
||||
eslint-config-prettier: 8.3.0_eslint@7.32.0
|
||||
devDependencies:
|
||||
typescript: 4.6.3
|
||||
|
||||
@@ -534,7 +534,7 @@ importers:
|
||||
"@babel/plugin-transform-typescript": 7.12.1
|
||||
"@babel/preset-env": 7.12.10
|
||||
"@babel/types": 7.12.10
|
||||
"@blitzjs/config": 2.0.0-alpha.9
|
||||
"@blitzjs/config": 2.0.0-alpha.10
|
||||
"@juanm04/cpx": 2.0.1
|
||||
"@mrleebo/prisma-ast": 0.2.6
|
||||
"@types/babel__core": 7.1.19
|
||||
@@ -613,8 +613,8 @@ importers:
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
"@types/vinyl": 2.0.6
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_rvfvfrvgktle2hmlnfpjw2zp4u
|
||||
"@typescript-eslint/parser": 5.9.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_8d4b52c6a654d64d1d8b695e9b6b2fe5
|
||||
"@typescript-eslint/parser": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
babylon: 6.18.0
|
||||
debug: 4.3.3
|
||||
eslint: 7.32.0
|
||||
@@ -625,7 +625,7 @@ importers:
|
||||
|
||||
packages/pkg-template:
|
||||
specifiers:
|
||||
"@blitzjs/config": 2.0.0-alpha.9
|
||||
"@blitzjs/config": 2.0.0-alpha.10
|
||||
"@types/react": 17.0.43
|
||||
"@types/react-dom": 17.0.14
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1
|
||||
@@ -635,8 +635,8 @@ importers:
|
||||
unbuild: 0.6.9
|
||||
watch: 1.0.2
|
||||
dependencies:
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_z2xqbpkx26iu62rx2zdto5f5qy
|
||||
"@typescript-eslint/parser": 5.9.1_typescript@4.6.3
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1_8d4b52c6a654d64d1d8b695e9b6b2fe5
|
||||
"@typescript-eslint/parser": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
devDependencies:
|
||||
"@blitzjs/config": link:../config
|
||||
"@types/react": 17.0.43
|
||||
@@ -3537,7 +3537,7 @@ packages:
|
||||
redent: 3.0.0
|
||||
dev: true
|
||||
|
||||
/@testing-library/react-hooks/7.0.2_zpnidt7m3osuk7shl3s4oenomq:
|
||||
/@testing-library/react-hooks/7.0.2_react-dom@18.0.0+react@18.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==,
|
||||
@@ -3562,7 +3562,7 @@ packages:
|
||||
react-error-boundary: 3.1.4_react@18.0.0
|
||||
dev: true
|
||||
|
||||
/@testing-library/react/13.0.0_zpnidt7m3osuk7shl3s4oenomq:
|
||||
/@testing-library/react/13.0.0_react-dom@18.0.0+react@18.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-p0lYA1M7uoEmk2LnCbZLGmHJHyH59sAaZVXChTXlyhV/PRW9LoIh4mdf7tiXsO8BoNG+vN8UnFJff1hbZeXv+w==,
|
||||
@@ -3579,7 +3579,7 @@ packages:
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
dev: true
|
||||
|
||||
/@testing-library/user-event/13.5.0_tlwynutqiyp5mns3woioasuxnq:
|
||||
/@testing-library/user-event/13.5.0_@testing-library+dom@8.13.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==,
|
||||
@@ -4250,14 +4250,14 @@ packages:
|
||||
"@types/jest": 27.4.1
|
||||
dev: true
|
||||
|
||||
/@types/testing-library__react-hooks/4.0.0_zpnidt7m3osuk7shl3s4oenomq:
|
||||
/@types/testing-library__react-hooks/4.0.0_react-dom@18.0.0+react@18.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-UzZUXthQtVjDruR2YA+hqg9ux5AfmZ8Kaw+QDungax+T7wb/5NC4x7YOpIqRx7oY3KksGQ69bzNE/xwzb5NslQ==,
|
||||
}
|
||||
deprecated: This is a stub types definition. @testing-library/react-hooks provides its own type definitions, so you do not need this installed.
|
||||
dependencies:
|
||||
"@testing-library/react-hooks": 7.0.2_zpnidt7m3osuk7shl3s4oenomq
|
||||
"@testing-library/react-hooks": 7.0.2_react-dom@18.0.0+react@18.0.0
|
||||
transitivePeerDependencies:
|
||||
- react
|
||||
- react-dom
|
||||
@@ -4299,7 +4299,7 @@ packages:
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.9.1_rvfvfrvgktle2hmlnfpjw2zp4u:
|
||||
/@typescript-eslint/eslint-plugin/5.9.1_8d4b52c6a654d64d1d8b695e9b6b2fe5:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw==,
|
||||
@@ -4313,10 +4313,10 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
"@typescript-eslint/parser": 5.9.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
"@typescript-eslint/parser": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
"@typescript-eslint/scope-manager": 5.9.1
|
||||
"@typescript-eslint/type-utils": 5.9.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
"@typescript-eslint/type-utils": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
debug: 4.3.4
|
||||
eslint: 7.32.0
|
||||
functional-red-black-tree: 1.0.1
|
||||
@@ -4327,38 +4327,8 @@ packages:
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.9.1_z2xqbpkx26iu62rx2zdto5f5qy:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw==,
|
||||
}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
"@typescript-eslint/parser": ^5.0.0
|
||||
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
||||
typescript: "*"
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_typescript@4.6.3
|
||||
"@typescript-eslint/parser": 5.9.1_typescript@4.6.3
|
||||
"@typescript-eslint/scope-manager": 5.9.1
|
||||
"@typescript-eslint/type-utils": 5.9.1_typescript@4.6.3
|
||||
debug: 4.3.4
|
||||
functional-red-black-tree: 1.0.1
|
||||
ignore: 5.2.0
|
||||
regexpp: 3.2.0
|
||||
semver: 7.3.7
|
||||
tsutils: 3.21.0_typescript@4.6.3
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/experimental-utils/5.9.1_hrkuebk64jiu2ut2d2sm4oylnu:
|
||||
/@typescript-eslint/experimental-utils/5.9.1_eslint@7.32.0+typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w==,
|
||||
@@ -4377,29 +4347,8 @@ packages:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/experimental-utils/5.9.1_typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w==,
|
||||
}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
||||
dependencies:
|
||||
"@types/json-schema": 7.0.11
|
||||
"@typescript-eslint/scope-manager": 5.9.1
|
||||
"@typescript-eslint/types": 5.9.1
|
||||
"@typescript-eslint/typescript-estree": 5.9.1_typescript@4.6.3
|
||||
eslint-scope: 5.1.1
|
||||
eslint-utils: 3.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/parser/5.9.1_hrkuebk64jiu2ut2d2sm4oylnu:
|
||||
/@typescript-eslint/parser/5.9.1_eslint@7.32.0+typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==,
|
||||
@@ -4420,29 +4369,6 @@ packages:
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/parser/5.9.1_typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==,
|
||||
}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
||||
typescript: "*"
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager": 5.9.1
|
||||
"@typescript-eslint/types": 5.9.1
|
||||
"@typescript-eslint/typescript-estree": 5.9.1_typescript@4.6.3
|
||||
debug: 4.3.4
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/scope-manager/5.9.1:
|
||||
resolution:
|
||||
@@ -4454,7 +4380,7 @@ packages:
|
||||
"@typescript-eslint/types": 5.9.1
|
||||
"@typescript-eslint/visitor-keys": 5.9.1
|
||||
|
||||
/@typescript-eslint/type-utils/5.9.1_hrkuebk64jiu2ut2d2sm4oylnu:
|
||||
/@typescript-eslint/type-utils/5.9.1_eslint@7.32.0+typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg==,
|
||||
@@ -4467,35 +4393,13 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
debug: 4.3.4
|
||||
eslint: 7.32.0
|
||||
tsutils: 3.21.0_typescript@4.6.3
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/type-utils/5.9.1_typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg==,
|
||||
}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: "*"
|
||||
typescript: "*"
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@typescript-eslint/experimental-utils": 5.9.1_typescript@4.6.3
|
||||
debug: 4.3.4
|
||||
tsutils: 3.21.0_typescript@4.6.3
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@typescript-eslint/types/5.9.1:
|
||||
resolution:
|
||||
@@ -7521,7 +7425,7 @@ packages:
|
||||
optionalDependencies:
|
||||
source-map: 0.6.1
|
||||
|
||||
/eslint-config-next/12.0.7_typescript@4.6.3:
|
||||
/eslint-config-next/12.0.7_f066dc8242e0fb1833636efd615b2015:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-kWOaym5qjyzR190zFKkZMaHetmiRORmzJiKML7Kr9CL213S6SwkrHHCEL58TRdpx0NA+HzrsFR9zgcV2pvV2Yg==,
|
||||
@@ -7536,19 +7440,21 @@ packages:
|
||||
dependencies:
|
||||
"@next/eslint-plugin-next": 12.0.7
|
||||
"@rushstack/eslint-patch": 1.1.3
|
||||
"@typescript-eslint/parser": 5.9.1_typescript@4.6.3
|
||||
"@typescript-eslint/parser": 5.9.1_eslint@7.32.0+typescript@4.6.3
|
||||
eslint: 7.32.0
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-import-resolver-typescript: 2.7.1_fkfqfehjtk7sk2efaqbgxsuasa
|
||||
eslint-plugin-import: 2.26.0
|
||||
eslint-plugin-jsx-a11y: 6.5.1
|
||||
eslint-plugin-react: 7.29.4
|
||||
eslint-plugin-react-hooks: 4.5.0
|
||||
eslint-import-resolver-typescript: 2.7.1_3bd94fa9be989baab6ef2e6b5dec3766
|
||||
eslint-plugin-import: 2.26.0_eslint@7.32.0
|
||||
eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
|
||||
eslint-plugin-react: 7.29.4_eslint@7.32.0
|
||||
eslint-plugin-react-hooks: 4.5.0_eslint@7.32.0
|
||||
next: 12.1.1
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/eslint-config-prettier/8.3.0:
|
||||
/eslint-config-prettier/8.3.0_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==,
|
||||
@@ -7556,6 +7462,8 @@ packages:
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
eslint: ">=7.0.0"
|
||||
dependencies:
|
||||
eslint: 7.32.0
|
||||
dev: false
|
||||
|
||||
/eslint-import-resolver-node/0.3.6:
|
||||
@@ -7568,7 +7476,7 @@ packages:
|
||||
resolve: 1.22.0
|
||||
dev: false
|
||||
|
||||
/eslint-import-resolver-typescript/2.7.1_fkfqfehjtk7sk2efaqbgxsuasa:
|
||||
/eslint-import-resolver-typescript/2.7.1_3bd94fa9be989baab6ef2e6b5dec3766:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==,
|
||||
@@ -7579,7 +7487,8 @@ packages:
|
||||
eslint-plugin-import: "*"
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
eslint-plugin-import: 2.26.0
|
||||
eslint: 7.32.0
|
||||
eslint-plugin-import: 2.26.0_eslint@7.32.0
|
||||
glob: 7.2.0
|
||||
is-glob: 4.0.3
|
||||
resolve: 1.22.0
|
||||
@@ -7599,7 +7508,7 @@ packages:
|
||||
find-up: 2.1.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-import/2.26.0:
|
||||
/eslint-plugin-import/2.26.0_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==,
|
||||
@@ -7612,6 +7521,7 @@ packages:
|
||||
array.prototype.flat: 1.3.0
|
||||
debug: 2.6.9
|
||||
doctrine: 2.1.0
|
||||
eslint: 7.32.0
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-module-utils: 2.7.3
|
||||
has: 1.0.3
|
||||
@@ -7623,7 +7533,7 @@ packages:
|
||||
tsconfig-paths: 3.14.1
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-jsx-a11y/6.5.1:
|
||||
/eslint-plugin-jsx-a11y/6.5.1_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==,
|
||||
@@ -7640,13 +7550,14 @@ packages:
|
||||
axobject-query: 2.2.0
|
||||
damerau-levenshtein: 1.0.8
|
||||
emoji-regex: 9.2.2
|
||||
eslint: 7.32.0
|
||||
has: 1.0.3
|
||||
jsx-ast-utils: 3.2.2
|
||||
language-tags: 1.0.5
|
||||
minimatch: 3.1.2
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-react-hooks/4.5.0:
|
||||
/eslint-plugin-react-hooks/4.5.0_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==,
|
||||
@@ -7654,9 +7565,11 @@ packages:
|
||||
engines: {node: ">=10"}
|
||||
peerDependencies:
|
||||
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
|
||||
dependencies:
|
||||
eslint: 7.32.0
|
||||
dev: false
|
||||
|
||||
/eslint-plugin-react/7.29.4:
|
||||
/eslint-plugin-react/7.29.4_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==,
|
||||
@@ -7668,6 +7581,7 @@ packages:
|
||||
array-includes: 3.1.4
|
||||
array.prototype.flatmap: 1.3.0
|
||||
doctrine: 2.1.0
|
||||
eslint: 7.32.0
|
||||
estraverse: 5.3.0
|
||||
jsx-ast-utils: 3.2.2
|
||||
minimatch: 3.1.2
|
||||
@@ -7700,18 +7614,6 @@ packages:
|
||||
dependencies:
|
||||
eslint-visitor-keys: 1.3.0
|
||||
|
||||
/eslint-utils/3.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==,
|
||||
}
|
||||
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
||||
peerDependencies:
|
||||
eslint: ">=5"
|
||||
dependencies:
|
||||
eslint-visitor-keys: 2.1.0
|
||||
dev: false
|
||||
|
||||
/eslint-utils/3.0.0_eslint@7.32.0:
|
||||
resolution:
|
||||
{
|
||||
@@ -7723,7 +7625,6 @@ packages:
|
||||
dependencies:
|
||||
eslint: 7.32.0
|
||||
eslint-visitor-keys: 2.1.0
|
||||
dev: true
|
||||
|
||||
/eslint-visitor-keys/1.3.0:
|
||||
resolution:
|
||||
@@ -9756,7 +9657,7 @@ packages:
|
||||
pretty-format: 27.5.1
|
||||
slash: 3.0.0
|
||||
strip-json-comments: 3.1.1
|
||||
ts-node: 10.7.0_fxg3r7oju3tntkxsvleuiot4fa
|
||||
ts-node: 10.7.0_2dcdb8fdc9a6e6d9aaf2aac9443a7c28
|
||||
transitivePeerDependencies:
|
||||
- bufferutil
|
||||
- canvas
|
||||
@@ -11518,7 +11419,7 @@ packages:
|
||||
- babel-plugin-macros
|
||||
dev: false
|
||||
|
||||
/next/12.1.1_zpnidt7m3osuk7shl3s4oenomq:
|
||||
/next/12.1.1_react-dom@18.0.0+react@18.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-IOfEIAgroMtsoYz6HXpDS+b5WB9WZ+MH266COXGlcpIiYSgUyJf9xV6vF+zY2RPvBJFT4fUW0EVdVnoOmTloDw==,
|
||||
@@ -12863,7 +12764,7 @@ packages:
|
||||
integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==,
|
||||
}
|
||||
|
||||
/react-query/3.21.1_zpnidt7m3osuk7shl3s4oenomq:
|
||||
/react-query/3.21.1_react-dom@18.0.0+react@18.0.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-aKFLfNJc/m21JBXJk7sR9tDUYPjotWA4EHAKvbZ++GgxaY+eI0tqBxXmGBuJo0Pisis1W4pZWlZgoRv9yE8yjA==,
|
||||
@@ -13285,7 +13186,7 @@ packages:
|
||||
dependencies:
|
||||
glob: 7.2.0
|
||||
|
||||
/rollup-plugin-dts/4.2.1_nmerszcjz2rfjina4mudxa4qka:
|
||||
/rollup-plugin-dts/4.2.1_rollup@2.70.2+typescript@4.6.3:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-eaxQZNUJ5iQcxNGlpJ1CUgG4OSVqWjDZ3nNSWBIoGrpcote2aNphSe1RJOaSYkb8dwn3o+rYm1vvld/5z3EGSQ==,
|
||||
@@ -13302,7 +13203,7 @@ packages:
|
||||
"@babel/code-frame": 7.16.7
|
||||
dev: true
|
||||
|
||||
/rollup-plugin-esbuild/4.9.1_spogcnvgx2zlfpppdv5errowom:
|
||||
/rollup-plugin-esbuild/4.9.1_esbuild@0.14.36+rollup@2.70.2:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==,
|
||||
@@ -14496,7 +14397,7 @@ packages:
|
||||
yargs-parser: 20.2.9
|
||||
dev: true
|
||||
|
||||
/ts-node/10.7.0_fxg3r7oju3tntkxsvleuiot4fa:
|
||||
/ts-node/10.7.0_2dcdb8fdc9a6e6d9aaf2aac9443a7c28:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==,
|
||||
@@ -14915,8 +14816,8 @@ packages:
|
||||
pretty-bytes: 5.6.0
|
||||
rimraf: 3.0.2
|
||||
rollup: 2.70.2
|
||||
rollup-plugin-dts: 4.2.1_nmerszcjz2rfjina4mudxa4qka
|
||||
rollup-plugin-esbuild: 4.9.1_spogcnvgx2zlfpppdv5errowom
|
||||
rollup-plugin-dts: 4.2.1_rollup@2.70.2+typescript@4.6.3
|
||||
rollup-plugin-esbuild: 4.9.1_esbuild@0.14.36+rollup@2.70.2
|
||||
scule: 0.2.1
|
||||
typescript: 4.6.3
|
||||
untyped: 0.3.0
|
||||
|
||||
Reference in New Issue
Block a user