-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
62
63
{
"name": "gatsby-plugin-offline-next",
"description": "Gatsby plugin which sets up a site to be able to run offline",
"version": "5.2.3",
"author": "Kyle Mathews <[email protected]>",
"contributors": [
"Kim D. Jeker <[email protected]>"
],
"bugs": {
"url": "https://github.com/kije/gatsby-plugin-offline-next/issues"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"cheerio": "^1.0.0-rc.10",
"gatsby-core-utils": "^2.14.0",
"glob": "^7.2.0",
"idb-keyval": "^5.1.5",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"md5-file": "^5.0.0",
"workbox-webpack-plugin": "^6.4.2"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"babel-preset-gatsby-package": "^1.14.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.14.0",
"rewire": "^5.0.0",
"@types/lodash": "^4.14.178",
"@types/glob": "^7.2.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/kije/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"
}
}