-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.51 KB
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
{
"name": "react-redux-await-control",
"version": "0.15.3",
"description": "Helping to control the state of async actions flux.",
"repository": "https://github.com/borgespro/react-redux-await-control",
"bugs": "https://github.com/borgespro/react-redux-await-control/issues",
"homepage": "https://github.com/borgespro/react-redux-await-control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "Thiago Borges <thiago@borges.pro>",
"keywords": [
"redux",
"await",
"control",
"redux-actions",
"react",
"saga",
"flux"
],
"license": "MIT",
"dependencies": {
"react-redux": "*",
"redux-actions": "^2.6.5"
},
"peerDependencies": {
"react": "*",
"react-redux": "*",
"redux": "*"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/cli": "^2.16.0",
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.22",
"@types/redux-actions": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^16.8.0",
"react-dom": "^17.0.2",
"redux": "^4.0.5",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "jest",
"version-packages": "yarn changeset version",
"release": "yarn build && yarn changeset publish"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/utils"
],
"collectCoverageFrom": [
"**/*.{ts}"
],
"modulePaths": [
"<rootDir>/src/",
"<rootDir>/__tests__/"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/utils"
]
}
}