update deps (#826)
This commit is contained in:
parent
af935c1b8d
commit
d48db7f284
6 changed files with 378 additions and 2275 deletions
|
@ -7,6 +7,7 @@
|
||||||
"build": "astro build"
|
"build": "astro build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@astrojs/renderer-lit": "^0.1.0",
|
||||||
"astro": "^0.17.0"
|
"astro": "^0.17.0"
|
||||||
},
|
},
|
||||||
"snowpack": {
|
"snowpack": {
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
"build": "astro build",
|
"build": "astro build",
|
||||||
"astro-dev": "nodemon --delay 0.5 -w ../../packages/astro/dist -x '../../packages/astro/astro.mjs dev'",
|
|
||||||
"test": "jest /__test__/",
|
"test": "jest /__test__/",
|
||||||
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
|
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
|
||||||
"lint": "prettier --check \"src/**/*.js\""
|
"lint": "prettier --check \"src/**/*.js\""
|
||||||
|
@ -14,22 +13,12 @@
|
||||||
"date-fns": "^2.19.0",
|
"date-fns": "^2.19.0",
|
||||||
"deepmerge": "^4.2.2",
|
"deepmerge": "^4.2.2",
|
||||||
"docsearch.js": "^2.6.3",
|
"docsearch.js": "^2.6.3",
|
||||||
"htm": "^3.0.4",
|
"htm": "^3.0.4"
|
||||||
"mdast-util-from-markdown": "^0.8.5",
|
|
||||||
"mdast-util-toc": "^5.1.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@11ty/eleventy": "^0.11.0",
|
|
||||||
"@11ty/eleventy-plugin-rss": "^1.0.9",
|
|
||||||
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
|
|
||||||
"@contentful/rich-text-html-renderer": "^14.1.2",
|
"@contentful/rich-text-html-renderer": "^14.1.2",
|
||||||
"@contentful/rich-text-types": "^14.1.2",
|
"@contentful/rich-text-types": "^14.1.2",
|
||||||
"astro": "^0.18.0-next.4",
|
"astro": "^0.18.0-next.4"
|
||||||
"eleventy-plugin-nesting-toc": "^1.2.0",
|
|
||||||
"luxon": "^1.25.0",
|
|
||||||
"markdown-it": "^12.0.2",
|
|
||||||
"markdown-it-anchor": "^6.0.0",
|
|
||||||
"nodemon": "^2.0.7"
|
|
||||||
},
|
},
|
||||||
"snowpack": {
|
"snowpack": {
|
||||||
"workspaceRoot": "../.."
|
"workspaceRoot": "../.."
|
||||||
|
|
|
@ -42,10 +42,10 @@
|
||||||
"yarn": "1.22.10"
|
"yarn": "1.22.10"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@changesets/cli": "^2.16.0",
|
|
||||||
"camel-case": "^4.1.2"
|
"camel-case": "^4.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@changesets/cli": "^2.16.0",
|
||||||
"@snowpack/plugin-postcss": "^1.4.3",
|
"@snowpack/plugin-postcss": "^1.4.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.22.0",
|
"@typescript-eslint/eslint-plugin": "^4.22.0",
|
||||||
"@typescript-eslint/parser": "^4.18.0",
|
"@typescript-eslint/parser": "^4.18.0",
|
||||||
|
|
|
@ -19,6 +19,11 @@
|
||||||
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
|
||||||
"dev": "astro-scripts dev \"src/**/*.ts\""
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
||||||
},
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"acorn": "^7.4.0",
|
||||||
|
"locate-character": "^2.0.5",
|
||||||
|
"magic-string": "^0.25.3"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro-scripts": "0.0.1"
|
"astro-scripts": "0.0.1"
|
||||||
},
|
},
|
||||||
|
|
|
@ -54,7 +54,6 @@
|
||||||
"@babel/core": "^7.14.6",
|
"@babel/core": "^7.14.6",
|
||||||
"@babel/generator": "^7.13.9",
|
"@babel/generator": "^7.13.9",
|
||||||
"@babel/parser": "^7.13.15",
|
"@babel/parser": "^7.13.15",
|
||||||
"@babel/plugin-transform-react-jsx": "^7.14.5",
|
|
||||||
"@babel/traverse": "^7.13.15",
|
"@babel/traverse": "^7.13.15",
|
||||||
"@snowpack/plugin-postcss": "^1.4.3",
|
"@snowpack/plugin-postcss": "^1.4.3",
|
||||||
"@snowpack/plugin-sass": "^1.4.0",
|
"@snowpack/plugin-sass": "^1.4.0",
|
||||||
|
@ -75,9 +74,7 @@
|
||||||
"find-up": "^5.0.0",
|
"find-up": "^5.0.0",
|
||||||
"get-port": "^5.1.1",
|
"get-port": "^5.1.1",
|
||||||
"gzip-size": "^6.0.0",
|
"gzip-size": "^6.0.0",
|
||||||
"hast-to-hyperscript": "~9.0.0",
|
|
||||||
"kleur": "^4.1.4",
|
"kleur": "^4.1.4",
|
||||||
"locate-character": "^2.0.5",
|
|
||||||
"magic-string": "^0.25.3",
|
"magic-string": "^0.25.3",
|
||||||
"mime": "^2.5.2",
|
"mime": "^2.5.2",
|
||||||
"moize": "^6.0.1",
|
"moize": "^6.0.1",
|
||||||
|
|
Loading…
Reference in a new issue