-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dependencies, fix React 18 bug for progress bar
- Loading branch information
Showing
21 changed files
with
26,834 additions
and
23,736 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
{ | ||
"name": "react-insta-stories-example", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"prestart": "webpack --mode development", | ||
"start": "webpack-dev-server --open --hot", | ||
"test": "echo \"No test specified\" && exit 0", | ||
"build": "webpack --mode production", | ||
"build:dev": "webpack --mode development", | ||
"watch": "webpack --watch" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "^7.8.7", | ||
"@babel/preset-env": "^7.8.7", | ||
"@babel/preset-react": "^7.8.3", | ||
"babel-loader": "^8.0.6", | ||
"css-loader": "^3.6.0", | ||
"html-webpack-plugin": "^4.5.0", | ||
"mini-css-extract-plugin": "^0.11.3", | ||
"react-hot-loader": "^4.12.19", | ||
"react-insta-stories": "file:..", | ||
"style-loader": "^1.2.1", | ||
"webpack": "^4.42.0", | ||
"webpack-cli": "^3.3.11", | ||
"webpack-dev-server": "^3.10.3" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
}, | ||
"dependencies": { | ||
"react-dom": "^16.13.1" | ||
} | ||
"name": "react-insta-stories-example", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"prestart": "webpack --mode development", | ||
"start": "webpack-dev-server --open --hot", | ||
"test": "echo \"No test specified\" && exit 0", | ||
"build": "webpack --mode production", | ||
"build:dev": "webpack --mode development", | ||
"watch": "webpack --watch" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "^7.8.7", | ||
"@babel/preset-env": "^7.8.7", | ||
"@babel/preset-react": "^7.8.3", | ||
"babel-loader": "^8.0.6", | ||
"css-loader": "^3.6.0", | ||
"html-webpack-plugin": "^4.5.0", | ||
"mini-css-extract-plugin": "^0.11.3", | ||
"style-loader": "^1.2.1", | ||
"webpack": "^5.76.2", | ||
"webpack-cli": "^5.0.1", | ||
"webpack-dev-server": "^4.12.0" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
}, | ||
"dependencies": { | ||
"react": "file:../node_modules/react", | ||
"react-dom": "file:../node_modules/react-dom", | ||
"react-insta-stories": "file:.." | ||
} | ||
} |
Oops, something went wrong.