chore: update deps

This commit is contained in:
Ayo 2022-10-29 12:55:21 +02:00
parent a37b6c80df
commit 6d9907a06c
7 changed files with 918 additions and 801 deletions

View file

@ -1,5 +1,5 @@
{ {
"name": "demo-astro-reactive-library", "name": "@astro-reactive/demo",
"description": "Demo App for Astro Reactive Library", "description": "Demo App for Astro Reactive Library",
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",

View file

@ -1,5 +1,5 @@
{ {
"name": "docs-astro-reactive-library", "name": "@astro-reactive/docs",
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
@ -13,18 +13,19 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"astro": "^1.4.4",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^1.1.4",
"@astrojs/preact": "^1.1.1",
"@algolia/client-search": "^4.13.1", "@algolia/client-search": "^4.13.1",
"@astrojs/preact": "^1.1.1",
"@astrojs/react": "^1.1.4",
"@docsearch/css": "^3.1.0", "@docsearch/css": "^3.1.0",
"@docsearch/react": "^3.1.0", "@docsearch/react": "^3.1.0",
"@types/react": "^17.0.45",
"@types/node": "^18.0.0", "@types/node": "^18.0.0",
"@types/react-dom": "^18.0.0" "@types/react": "^18.0.24",
"@types/react-dom": "^18.0.0",
"astro": "^1.4.4",
"preact": "^10.7.3",
"prettier-plugin-astro": "^0.7.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
}, },
"description": "```bash npm create astro@latest -- --template docs ```", "description": "```bash npm create astro@latest -- --template docs ```",
"main": "index.js", "main": "index.js",
@ -37,6 +38,5 @@
"bugs": { "bugs": {
"url": "https://github.com/Rishav-12/astro-reactive-library/issues" "url": "https://github.com/Rishav-12/astro-reactive-library/issues"
}, },
"homepage": "https://github.com/Rishav-12/astro-reactive-library#readme", "homepage": "https://github.com/Rishav-12/astro-reactive-library#readme"
"devDependencies": {}
} }

View file

@ -1,5 +1,5 @@
{ {
"name": "astro-reactive-library-landing-page", "name": "@astro-reactive/landing-page",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"scripts": { "scripts": {
@ -17,11 +17,11 @@
"@types/micromodal": "^0.3.3", "@types/micromodal": "^0.3.3",
"astro": "^1.4.7", "astro": "^1.4.7",
"astro-eleventy-img": "^0.5.0", "astro-eleventy-img": "^0.5.0",
"astro-icon": "^0.7.3", "astro-icon": "^0.8.0",
"prettier": "2.7.1", "prettier": "2.7.1",
"prettier-plugin-astro": "^0.6.0", "prettier-plugin-astro": "^0.7.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"tailwindcss-fluid-type": "^1.3.3" "tailwindcss-fluid-type": "^2.0.3"
}, },
"dependencies": { "dependencies": {
"micromodal": "^0.4.10", "micromodal": "^0.4.10",

1674
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,6 @@
}, },
"scripts": { "scripts": {
"start": "npm run dev -w apps/demo", "start": "npm run dev -w apps/demo",
"dev": "npm run dev -w apps/demo",
"demo": "npm run dev -w apps/demo", "demo": "npm run dev -w apps/demo",
"docs": "npm run dev -w apps/docs", "docs": "npm run dev -w apps/docs",
"landing-page": "npm run dev -w apps/landing-page", "landing-page": "npm run dev -w apps/landing-page",
@ -39,6 +38,6 @@
"packages/common" "packages/common"
], ],
"dependencies": { "dependencies": {
"prettier-plugin-astro": "^0.6.0" "prettier-plugin-astro": "^0.7.0"
} }
} }

View file

@ -48,7 +48,7 @@
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0", "mocha": "^10.0.0",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"prettier-plugin-astro": "^0.6.0", "prettier-plugin-astro": "^0.7.0",
"typescript": "^4.8.3" "typescript": "^4.8.3"
}, },
"peerDependencies": { "peerDependencies": {
@ -56,7 +56,7 @@
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@astro-reactive/validator": "^0.1.0", "@astro-reactive/common": "^0.0.3",
"@astro-reactive/common": "^0.0.3" "@astro-reactive/validator": "^0.1.0"
} }
} }

View file

@ -46,7 +46,7 @@
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0", "mocha": "^10.0.0",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"prettier-plugin-astro": "^0.6.0", "prettier-plugin-astro": "^0.7.0",
"typescript": "^4.8.3" "typescript": "^4.8.3"
}, },
"peerDependencies": { "peerDependencies": {