-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.91 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-healthy",
"description": "Incrementally check and alert your users to the health of your APIs",
"version": "2.0.0",
"private": false,
"license": "MIT",
"author": "Katia Wheeler",
"homepage": "https://github.com/katiawheeler/healthy#readme",
"repository": "https://github.com/katiawheeler/healthy.git",
"bugs": {
"url": "https://github.com/katiawheeler/healthy/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"!dist/tests/"
],
"sideEffects": false,
"keywords": [
"react",
"api",
"error",
"banner"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esnext/index.esnext",
"types": "dist/ts/latest/src/index.d.ts",
"scripts": {
"build:types": "tsc -b",
"build:js": "rollup -c",
"prebuild": "rimraf dist",
"build": "run-s build:types build:js",
"test": "react-scripts test"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@types/react": "*",
"@types/react-dom": "*",
"react-use": "^17.4.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/css": "^11.10.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@shopify/browserslist-config": "^3.0.0",
"@shopify/typescript-configs": "^5.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/parser": "^5.33.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.2",
"eslint": "^8.21.0",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.3",
"react": "*",
"react-dom": "*",
"react-scripts": "^5.0.1",
"react-use": "^17.4.0",
"rollup": "^2.78.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 opera versions",
"last 3 edge versions",
"last 3 safari versions",
"last 3 chromeandroid versions",
"last 1 firefoxandroid versions",
"ios >= 13.4"
]
}