-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.04 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
{
"name": "react-action-listener",
"version": "1.2.7",
"description": "Middleware which allows listening actions of Context and Redux",
"main": "lib",
"files": [
"lib",
"src"
],
"directories": {
"lib": "src",
"example": "",
"test": "test"
},
"scripts": {
"type": "tsc --noEmit",
"type:w": "yarn type --watch",
"clean": "rimraf lib coverage",
"build:p": "tsc --declarationDir lib --emitDeclarationOnly",
"build": "yarn clean && webpack-cli && yarn build:p",
"test": "jest",
"test:w": "yarn test --watch",
"test:c": "jest --coverage",
"lint": "eslint --ext js,ts,jsx,tsx src test",
"lint:p": "prettier --write \"{src,test}/**/*.{js,ts,jsx,tsx}\" \"**/*.md\"",
"prepublishOnly": "yarn test && yarn lint && yarn lint:p",
"prepare": "yarn build"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn lint:p"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/qkreltms/react-action-listener"
},
"keywords": [
"action-middleware",
"middleware",
"listener-middleware",
"listeners",
"redux",
"redux-middleware",
"react-action-listener",
"react-hook"
],
"author": {
"name": "Jeong Hoon Park",
"email": "[email protected]",
"url": "https://github.com/qkreltms/"
},
"contributors": [],
"license": "MIT",
"peerDependencies": {
"react-dom": ">= 16.8.0",
"react": ">= 16.8.0",
"@types/react": ">= 16.8.0",
"redux": ">= 4.0.5"
},
"bugs": {
"url": "https://github.com/qkreltms/react-action-listener/issues"
},
"homepage": "https://github.com/qkreltms/react-action-listener#readme",
"dependencies": {
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.2",
"@types/react-redux": "^7.1.15",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-loader": "^8.2.2",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-test-renderer": "16.9.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1"
}
}