-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
64
65
66
67
{
"name": "henks-blog",
"version": "0.0.0",
"description": "Jekyll powered blog",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"workbox": "workbox injectManifest workbox-config.js",
"rollup": "rollup --config rollup.config.mjs",
"build": "npm run rollup && npm run workbox",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spike1292/spike1292.github.io.git"
},
"author": "Henk Bakker",
"license": "ISC",
"bugs": {
"url": "https://github.com/spike1292/spike1292.github.io/issues"
},
"homepage": "https://henkbakker.dev",
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"npm-watch": "^0.9.0",
"rollup": "^2.41.3",
"rollup-plugin-babel": "^4.4.0",
"workbox-cli": "^5.1.4"
},
"dependencies": {
"workbox-broadcast-update": "^5.1.2",
"workbox-core": "^5.1.2",
"workbox-expiration": "^5.1.2",
"workbox-google-analytics": "^5.1.2",
"workbox-precaching": "^5.1.2",
"workbox-routing": "^5.1.2",
"workbox-strategies": "^5.1.2",
"workbox-window": "^5.1.2"
},
"watch": {
"rollup": "assets/js/{sw-register,service-worker.template}.mjs",
"workbox": {
"patterns": [
"_build",
"_site",
"assets",
"_drafts",
"_layouts",
"_includes",
"_posts",
"_sass",
"blog",
"./*.html"
],
"extensions": "js,json,mjs,html,md,scss",
"ignore": [
"_site/service-worker.js"
],
"delay": "2000",
"runOnChangeOnly": true
}
}
}