From 12928a57c26a1ea08b5f5ae8e2a8d9bd82930a09 Mon Sep 17 00:00:00 2001 From: Mohd Ashraf <57627350+mohdashraf010897@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:27:36 +0530 Subject: [PATCH] fix: broken JSON file --- .../with-popular-suggestions/package.json | 2 +- .../with-popular-suggestions/package.json | 58 +++++++++++-------- 2 files changed, 36 insertions(+), 24 deletions(-) diff --git a/packages/native/examples/with-popular-suggestions/package.json b/packages/native/examples/with-popular-suggestions/package.json index ab5c3486..ab0168f0 100644 --- a/packages/native/examples/with-popular-suggestions/package.json +++ b/packages/native/examples/with-popular-suggestions/package.json @@ -15,7 +15,7 @@ "@expo/vector-icons": "^10.2.1", "expo": "~39.0.2", "expo-status-bar": "~1.0.2", - " "16.13.1", + "react": "16.13.1", "react-dom": "16.13.1", "react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz", "react-native-web": "~0.13.12" diff --git a/packages/react-searchbox/examples/with-popular-suggestions/package.json b/packages/react-searchbox/examples/with-popular-suggestions/package.json index 2832b554..e2444013 100644 --- a/packages/react-searchbox/examples/with-popular-suggestions/package.json +++ b/packages/react-searchbox/examples/with-popular-suggestions/package.json @@ -1,25 +1,37 @@ { - "name": "@appbaseio/react-searchbox-example-with-popular-suggestions", - "homepage": ".", - "version": "0.0.0", - "license": "MIT", - "private": true, - "dependencies": { - "prop-types": "^15.6.2", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-scripts": "^5.0.0", - "react-paginate": "^6.5.0", - "@appbaseio/react-searchbox": "1.8.1" - }, - "scripts": { - "start": "react-scripts start", - "build": "react-scripts build", - "test": "react-scripts test --env=jsdom", - "eject": "react-scripts eject" - }, - "devDependencies": { - "@babel/core": "^7.6.2", - "babel-loader": "^8.0.6" - } + "name": "@appbaseio/react-searchbox-example-with-popular-suggestions", + "homepage": ".", + "version": "0.0.0", + "license": "MIT", + "private": true, + "dependencies": { + "prop-types": "^15.6.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.0", + "react-paginate": "^6.5.0", + "@appbaseio/react-searchbox": "1.8.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject" + }, + "devDependencies": { + "@babel/core": "^7.6.2", + "babel-loader": "^8.0.6" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } }