forked from imranhsayed/react-pwa-workbox-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "react-pwa-workbox-example",
"version": "1.0.0",
"description": ":fire: This is a workshop for learning how to build React PWA Applications with workbox.",
"main": "index.js",
"scripts": {
"webpack-dev-server": "webpack-dev-server",
"dev": "webpack serve --mode=development",
"prod": "NODE_ENV=production webpack --mode=production",
"serve": "npm run prod && serve -s dist",
"svg": "svgr -d src/components/icons src/components/icons/svgs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranhsayed/react-workshop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/imranhsayed/react-workshop/issues"
},
"homepage": "https://github.com/imranhsayed/react-workshop#readme",
"dependencies": {
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"file-loader": "^6.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^2.0.0",
"workbox-cacheable-response": "^6.1.5",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-window": "^6.1.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@svgr/cli": "^5.5.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^5.3.1",
"path": "^0.12.7",
"serve": "^11.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^6.1.5"
}
}