feat(#6): Add PWA functionality and service worker

This commit is contained in:
Josh Creek
2022-10-08 00:41:44 +01:00
parent c173215b29
commit 4ba77a358a
10 changed files with 4825 additions and 744 deletions
+14 -6
View File
@@ -4,8 +4,8 @@
"description": "A fun and simple selection wheel.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"build": "webpack --config webpack.prod.js",
"dev": "webpack serve --hot --config webpack.dev.js",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ."
},
"repository": {
@@ -27,8 +27,6 @@
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"react-dev-utils": "^12.0.1",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
@@ -36,10 +34,20 @@
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-webmanifest-loader": "^2.0.2"
"webpack-webmanifest-loader": "^2.0.2",
"workbox-cli": "^6.5.4"
},
"dependencies": {
"@types/d3": "^7.4.0",
"d3": "^7.6.1"
"d3": "^7.6.1",
"html-webpack-plugin": "^5.5.0",
"react-dev-utils": "^12.0.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.8.0",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-webpack-plugin": "^6.5.4"
}
}