forked from mauricedb/use-abortable-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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": "use-abortable-fetch",
"version": "3.0.3",
"main": "release/index.js",
"umd:main": "release/index.umd.js",
"source": "src/index.ts",
"scripts": {
"start": "parcel example/index.html",
"build": "microbundle",
"dev": "microbundle watch",
"prettier": "prettier --write {src,example}/**/*.{js,ts,jsx,tsx}",
"test": "jest",
"eslint": "eslint ./src/**/*.{ts,tsx}"
},
"repository": {
"type": "git",
"url": "https://github.com/mauricedb/use-abortable-fetch.git"
},
"bugs": {
"url": "https://github.com/mauricedb/use-abortable-fetch/issues"
},
"homepage": "https://github.com/mauricedb/use-abortable-fetch#readme",
"author": "Maurice de Beijer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "13.1.1",
"@types/content-type": "1.1.5",
"@types/jest": "27.5.0",
"@types/media-typer": "1.1.1",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"jest": "26.6.3",
"jest-fetch-mock": "3.0.3",
"microbundle": "0.15.0",
"parcel-bundler": "1.12.5",
"prettier": "2.6.2",
"react": "18.1.0",
"react-dom": "18.0.0",
"ts-jest": "26.5.6"
},
"peerDependencies": {
"react": ">=16.13.0"
},
"dependencies": {
"content-type": "1.0.4",
"media-typer": "1.1.0"
}
}