-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
138 lines (138 loc) · 4.01 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "use-api-action",
"version": "1.1.9",
"description": "REST API services made easy with redux",
"license": "MIT",
"homepage": "https://github.com/gitaumoses4/redux-api-actions",
"repository": "github:gitaumoses4/redux-api-actions",
"bugs": "https://github.com/gitaumoses4/redux-api-actions/issues",
"keywords": [
"redux",
"reducer",
"api",
"hooks",
"redux api actions",
"reducer builder",
"redux-saga",
"react"
],
"authors": [
"Moses Gitau <[email protected]> (https://github.com/gitaumoses4)"
],
"main": "lib/use-api-action.js",
"unpkg": "dist/use-api-action.js",
"module": "es/use-api-action.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"es",
"types"
],
"scripts": {
"clean": "rimraf lib dist es coverage types",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" \"**/*.md\"",
"format:check": " prettier --list-different src test",
"lint": "eslint --ext js,ts src test",
"check-types": "tsc --noEmit",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"build": "rollup -c",
"pretests": "npm run build",
"prepublishOnly": "npm run clean && npm run check-types && npm run format:check && npm run lint && npm test && npm run build",
"postpublish": "npm run clean",
"examples:lint": "eslint --ext js,ts examples",
"examples:test": "cross-env CI=true babel-node examples/testAll.js"
},
"peerDependencies": {
"react": "^16.8.3 || ^17",
"react-redux": "^7.2.2",
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"axios": "^0.21.1",
"hoist-non-react-statics": "^3.3.2",
"object-hash": "^2.1.1",
"prop-types": "^15.7.2",
"react-dom": "^17.0.1",
"react-is": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.4",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^13.13.4",
"@types/object-hash": "^1.3.4",
"@types/react": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/redux-mock-store": "^1.0.2",
"@types/redux-saga": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"glob": "^7.1.6",
"jest": "^25.4.0",
"moxios": "^0.4.0",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.7.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rxjs": "^6.5.5",
"typescript": "^3.8.3",
"typings-tester": "^0.3.2"
},
"npmName": "use-api-action",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"jest": {
"testRegex": "(/test/.*\\.spec\\.[tj]s[x]?)$",
"coverageProvider": "v8"
},
"sideEffects": false
}