-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "workbox-ipfs",
"version": "0.0.4",
"description": "IPFS router for a Workbox service worker.",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"ipfs",
"ipfs-core",
"workbox"
],
"repository": {
"type": "git",
"url": "https://github.com/shop3/workbox-ipfs.git"
},
"scripts": {
"build": "webpack && npm run build:ts",
"build:ts": "tsc --project tsconfig.build.json",
"prebuild": "rimraf ./lib",
"develop": "webpack serve --config ./dev/webpack.config.js",
"release": "standard-version",
"lint": "eslint --fix .",
"lint:staged": "eslint --fix",
"husky:install": "husky install",
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"workbox-routing": "^6.5.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"ipfs-core": "^0.15.1",
"ipfs-http-response": "^3.0.1",
"is-ipfs": "^6.0.2",
"lint-staged": "^13.0.1",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"util": "^0.12.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-node-externals": "^3.0.0",
"workbox-core": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-sw": "^6.5.3",
"workbox-window": "^6.5.3"
},
"lint-staged": {
"*.(ts|tsx|js)": [
"npm run lint:staged"
]
}
}