-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@smartive/react-pwa-toolbox",
"version": "0.0.0-development",
"description": "Toolbox containing various helpers for creating PWA's with React.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartive/react-pwa-toolbox.git"
},
"keywords": [
"react",
"pwa",
"workbox",
"toolbox"
],
"author": "smartive AG <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartive/react-pwa-toolbox/issues"
},
"homepage": "https://github.com/smartive/react-pwa-toolbox#readme",
"dependencies": {
"tslib": "^2.0.0",
"workbox-window": "^6.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": "^16 || ^18",
"npm": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@smartive/eslint-config": "^3.1.0",
"@smartive/prettier-config": "^3.0.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.21",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.0.0"
}
}