chore: update deps
This commit is contained in:
parent
a37b6c80df
commit
6d9907a06c
7 changed files with 918 additions and 801 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "demo-astro-reactive-library",
|
||||
"name": "@astro-reactive/demo",
|
||||
"description": "Demo App for Astro Reactive Library",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "docs-astro-reactive-library",
|
||||
"name": "@astro-reactive/docs",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
|
@ -13,18 +13,19 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"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",
|
||||
"@astrojs/preact": "^1.1.1",
|
||||
"@astrojs/react": "^1.1.4",
|
||||
"@docsearch/css": "^3.1.0",
|
||||
"@docsearch/react": "^3.1.0",
|
||||
"@types/react": "^17.0.45",
|
||||
"@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 ```",
|
||||
"main": "index.js",
|
||||
|
@ -37,6 +38,5 @@
|
|||
"bugs": {
|
||||
"url": "https://github.com/Rishav-12/astro-reactive-library/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Rishav-12/astro-reactive-library#readme",
|
||||
"devDependencies": {}
|
||||
"homepage": "https://github.com/Rishav-12/astro-reactive-library#readme"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "astro-reactive-library-landing-page",
|
||||
"name": "@astro-reactive/landing-page",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
@ -17,11 +17,11 @@
|
|||
"@types/micromodal": "^0.3.3",
|
||||
"astro": "^1.4.7",
|
||||
"astro-eleventy-img": "^0.5.0",
|
||||
"astro-icon": "^0.7.3",
|
||||
"astro-icon": "^0.8.0",
|
||||
"prettier": "2.7.1",
|
||||
"prettier-plugin-astro": "^0.6.0",
|
||||
"prettier-plugin-astro": "^0.7.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"tailwindcss-fluid-type": "^1.3.3"
|
||||
"tailwindcss-fluid-type": "^2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"micromodal": "^0.4.10",
|
||||
|
|
1676
package-lock.json
generated
1676
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,6 @@
|
|||
},
|
||||
"scripts": {
|
||||
"start": "npm run dev -w apps/demo",
|
||||
"dev": "npm run dev -w apps/demo",
|
||||
"demo": "npm run dev -w apps/demo",
|
||||
"docs": "npm run dev -w apps/docs",
|
||||
"landing-page": "npm run dev -w apps/landing-page",
|
||||
|
@ -39,6 +38,6 @@
|
|||
"packages/common"
|
||||
],
|
||||
"dependencies": {
|
||||
"prettier-plugin-astro": "^0.6.0"
|
||||
"prettier-plugin-astro": "^0.7.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"mocha": "^10.0.0",
|
||||
"prettier": "^2.7.1",
|
||||
"prettier-plugin-astro": "^0.6.0",
|
||||
"prettier-plugin-astro": "^0.7.0",
|
||||
"typescript": "^4.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"mocha": "^10.0.0",
|
||||
"prettier": "^2.7.1",
|
||||
"prettier-plugin-astro": "^0.6.0",
|
||||
"prettier-plugin-astro": "^0.7.0",
|
||||
"typescript": "^4.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
|
Loading…
Reference in a new issue