1
0
Fork 0

(chore): update dependencies to match package.jsons and scripts to run next directly

This commit is contained in:
Enoch Riese 2023-02-02 17:38:49 -06:00
parent 164b2fb19f
commit 3c49edef80
5 changed files with 34 additions and 34 deletions

View file

@ -59,7 +59,7 @@ core:
'lodash.set': &_set '4.3.2'
'lodash.unset': &_unset '4.5.2'
dev:
'eslint': &eslint '8.31.0'
'eslint': &eslint '8.33.0'
'nyc': '15.1.0'
diana:
peer:
@ -95,7 +95,7 @@ jaeger:
'@freesewing/plugin-mirror': *freesewing
new-design:
_:
'axios': '1.2.2'
'axios': '1.2.6'
'chalk': '5.0.1'
'execa': '6.1.0'
'mustache': '4.2.0'
@ -202,8 +202,8 @@ yuri:
backend:
_:
'@aws-sdk/client-sesv2': '3.241.0'
'@prisma/client': &prisma '4.8.1'
'@aws-sdk/client-sesv2': '3.262.0'
'@prisma/client': &prisma '4.9.0'
'bcryptjs': '2.4.3'
'cors': '2.8.5'
'crypto': '1.0.1'
@ -222,7 +222,7 @@ backend:
dev:
'chai': *chai
'chai-http': '4.3.0'
'esbuild': '0.17.00'
'esbuild': '0.17.4'
'mocha': *mocha
'mocha-steps': '1.3.0'
'nodemon': '2.0.20'
@ -234,10 +234,10 @@ dev:
'@mdx-js/mdx': *mdx
'@mdx-js/react': *mdx
'@mdx-js/runtime': &mdxRuntime '2.0.0-next.9'
'@next/bundle-analyzer': &next '13.1.1'
'@tailwindcss/typography': '0.5.8'
'@next/bundle-analyzer': &next '13.1.5'
'@tailwindcss/typography': &tailwindTypography '0.5.9'
'algoliasearch': '4.14.3'
'daisyui': &daisyui '2.46.1'
'daisyui': &daisyui '2.47.0'
'lodash.get': *_get
'lodash.orderby': &_orderby '4.6.0'
'lodash.set': *_set
@ -246,8 +246,8 @@ dev:
'react-copy-to-clipboard': &reactCopyToClipboard '5.1.0'
'react-dom': *react
'react-hotkeys-hook': &reactHotkeysHook '4.3.2'
'react-instantsearch-dom': &reactInstantsearchDom '6.38.2'
'react-markdown': &reactMarkdown '8.0.4'
'react-instantsearch-dom': &reactInstantsearchDom '6.38.3'
'react-markdown': &reactMarkdown '8.0.5'
'react-swipeable': &reactSwipeable '7.0.0'
'react-timeago': &reactTimeago '7.1.0'
'rehype-autolink-headings': &rehypeAutolinkHeadings '6.1.1'
@ -280,7 +280,7 @@ lab:
'@mdx-js/mdx': *mdx
'@mdx-js/react': *mdx
'@mdx-js/runtime': *mdxRuntime
'@tailwindcss/typography': &tailwindTypography '0.5.0'
'@tailwindcss/typography': *tailwindTypography
'algoliasearch': &algoliasearch '4.14.3'
'd3-dispatch': '3.0.1'
'd3-drag': '3.0.0'
@ -342,7 +342,7 @@ org:
sanity:
_:
'@sanity/vision': &sanity '3.2.3'
'@sanity/vision': &sanity '3.2.5'
'react': *react
'react-dom': *react
'react-is': *react
@ -352,9 +352,9 @@ sanity:
dev:
'@sanity/eslint-config-studio': '2.0.1'
'eslint': *eslint
'prettier': '2.8.1'
'prettier': '2.8.3'
'typescript': '4.9.4'
'@sanity/cli': '3.1.4'
'@sanity/cli': '3.2.6'
shared:
_:
@ -381,7 +381,7 @@ shared:
'react-markdown': *reactMarkdown
'react-sizeme': '3.0.2'
'react-timeago': *reactTimeago
'react-zoom-pan-pinch': '2.1.3'
'react-zoom-pan-pinch': '2.2.0'
'rehype-autolink-headings': *rehypeAutolinkHeadings
'rehype-highlight': *rehypeHighlight
'remark-smartypants': '2.0.0'

View file

@ -61,11 +61,11 @@ backend:
prebuild: 'node scripts/prebuild.mjs'
dev:
build: &nextBuild 'node --experimental-json-modules ../../node_modules/next/dist/bin/next build'
build: &nextBuild 'next build'
cibuild: 'yarn build && node scripts/algolia.mjs'
dev: &nextDev 'node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000'
dev: &nextDev 'next dev -p 8000'
develop: *nextDev
lint: &nextLint '../../node_modules/next/dist/bin/next lint'
lint: &nextLint 'next lint'
prebuild: 'SITE=dev node --experimental-json-modules ../shared/prebuild/index.mjs'
serve: "pm2 start npm --name 'dev' -- run start"
start: &nextStart 'yarn prebuild && yarn dev'
@ -81,7 +81,7 @@ lab:
dev: *nextDev
develop: *nextDev
lint: *nextLint
prebuild: 'SITE=lab node --experimental-json-modules ../shared/prebuild/index.mjs'
prebuild: 'node --experimental-json-modules ../shared/prebuild/index.mjs'
start: *nextStart
org:

View file

@ -14,11 +14,11 @@
"url": "https://freesewing.org/patrons/join"
},
"scripts": {
"build": "node --experimental-json-modules ../../node_modules/next/dist/bin/next build",
"build": "next build",
"cibuild": "yarn build && node scripts/algolia.mjs",
"dev": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"develop": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"lint": "../../node_modules/next/dist/bin/next lint",
"dev": "next dev -p 8000",
"develop": "next dev -p 8000",
"lint": "next lint",
"prebuild": "SITE=dev node --experimental-json-modules ../shared/prebuild/index.mjs",
"serve": "pm2 start npm --name 'dev' -- run start",
"start": "yarn prebuild && yarn dev"
@ -29,7 +29,7 @@
"@mdx-js/mdx": "2.2.1",
"@mdx-js/react": "2.2.1",
"@mdx-js/runtime": "2.0.0-next.9",
"@next/bundle-analyzer": "13.1.3",
"@next/bundle-analyzer": "13.1.5",
"@tailwindcss/typography": "0.5.9",
"algoliasearch": "4.14.3",
"daisyui": "2.47.0",

View file

@ -14,13 +14,13 @@
"url": "https://freesewing.org/patrons/join"
},
"scripts": {
"build": "node --experimental-json-modules ../../node_modules/next/dist/bin/next build",
"build": "next build",
"cibuild": "yarn build",
"clean": "rimraf pages/*.mjs && rimraf pages/*/*.mjs && rimraf pages/v/*/*.mjs",
"dev": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"develop": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"lint": "../../node_modules/next/dist/bin/next lint",
"prebuild": "SITE=lab node --experimental-json-modules ../shared/prebuild/index.mjs",
"dev": "next dev -p 8000",
"develop": "next dev -p 8000",
"lint": "next lint",
"prebuild": "node --experimental-json-modules ../shared/prebuild/index.mjs",
"start": "yarn prebuild && yarn dev"
},
"peerDependencies": {},

View file

@ -14,13 +14,13 @@
"url": "https://freesewing.org/patrons/join"
},
"scripts": {
"build": "node --experimental-json-modules ../../node_modules/next/dist/bin/next build",
"build": "next build",
"cibuild": "yarn build",
"clean": "rimraf pages/*.mjs && rimraf pages/*/*.mjs && rimraf pages/v/*/*.mjs",
"dev": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"develop": "node --experimental-json-modules ../../node_modules/next/dist/bin/next dev -p 8000",
"dev": "next dev -p 8000",
"develop": "next dev -p 8000",
"i18n": "SITE=org node ../shared/prebuild/i18n-only.mjs",
"lint": "../../node_modules/next/dist/bin/next lint",
"lint": "next lint",
"prebuild": "SITE=org node --experimental-json-modules ../shared/prebuild/index.mjs",
"start": "yarn prebuild && yarn dev"
},
@ -38,8 +38,8 @@
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
"react-dropzone": "14.2.3",
"next": "13.1.5",
"react-dropzone": "14.2.3",
"react-hotkeys-hook": "4.3.2",
"react-instantsearch-dom": "6.38.3",
"react-markdown": "8.0.5",