forked from kije/gatsby-plugin-offline-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
59
60
61
{
"name": "@speedydock/gatsby-plugin-offline-next",
"description": "Gatsby plugin which sets up a site to be able to run offline",
"version": "5.2.2",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"contributors": [
"Kim D. Jeker <github@kije.ch>"
],
"bugs": {
"url": "https://github.com/kije/gatsby-plugin-offline-next/issues"
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"cheerio": "^1.0.0-rc.9",
"gatsby-core-utils": "^2.10.0",
"glob": "^7.1.7",
"idb-keyval": "^5.0.6",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"md5-file": "^5.0.0",
"workbox-webpack-plugin": "^6.1.5"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"babel-preset-gatsby-package": "^1.10.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.10.0",
"rewire": "^5.0.0"
},
"homepage": "https://github.com/kije/gatsby-plugin-offline-next#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"offline",
"precache",
"service-worker"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^3.10.1",
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SpeedyDock/gatsby-plugin-offline-next.git"
},
"scripts": {
"build": "npm run build:src && npm run build:sw",
"build:src": "babel src --out-dir . --ignore \"**/__tests__,src/sw-append.js,src/serviceworker/**/*\"",
"build:sw": "cpx -v src/serviceworker/**/*.js ./serviceworker",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "npm run build:sw -- --watch & npm run build:src -- --watch"
},
"engines": {
"node": ">=12.13.0"
}
}