-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
98 lines (98 loc) · 2.65 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
{
"name": "use-axios-client",
"version": "2.0.0",
"description": "Make axios requests in React using hooks.",
"keywords": [
"axios",
"hooks",
"http",
"react",
"xhr"
],
"homepage": "https://use-axios-client.io",
"bugs": {
"url": "https://github.com/angelle-sw/use-axios-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelle-sw/use-axios-client.git"
},
"license": "MIT",
"author": "JP Angelle, Zak Angelle",
"scripts": {
"build": "pika build",
"coverage": "yarn test --coverage --watchAll=false && yarn report",
"lint": "eslint src babel.config.js --ext js,jsx,ts,tsx",
"prepare": "yarn lint && yarn test:once && yarn tsc && yarn build && cd pkg",
"prettier": "prettier --write **/*.{js,jsx,ts,tsx}",
"report": "cd coverage/lcov-report && open index.html",
"test": "jest --watch",
"test:once": "jest",
"tsc": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.1",
"@pika/plugin-build-types": "^0.8.1",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-standard-pkg": "^0.8.1",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.0",
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"axios": "^0.19.0",
"babel-jest": "^24.8.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.7",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"peerDependencies": {
"axios": "^0.19.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
}
}