forked from hanford/next-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.22 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
{
"name": "next-offline",
"version": "4.0.1",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hanford/next-offline.git"
},
"scripts": {
"test": "cd tests && yarn test"
},
"bugs": "https://github.com/hanford/next-offline/issues",
"authors": [
"Jack Hanford"
],
"contributors": [
"Joao Vieira <[email protected]>"
],
"tags": [
"react",
"next.js",
"offline",
"service worker",
"pre-cache",
"networkFirst",
"cacheFirst",
"webpack",
"workbox",
"sw-helpers"
],
"keywords": [
"react",
"next.js",
"offline",
"service worker",
"pre-cache",
"networkFirst",
"cacheFirst",
"webpack",
"workbox",
"sw-helpers"
],
"peerDependencies": {
"next": ">=7.0.0"
},
"dependencies": {
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "~4.5.2",
"fs-extra": "~7.0.0",
"glob": "~7.1.3",
"webpack": "^4.19.1",
"workbox-webpack-plugin": "^4.3.1"
},
"devDependencies": {
"husky": "^0.14.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}