-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.67 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
{
"name": "easy-ducks",
"version": "2.0.1",
"description": "A utility to simplify the Redux modular duck pattern",
"author": "Knowledge to Practice <[email protected]> (http://www.knowledgetopractice.com/)",
"repository": {
"type": "git",
"url": "https://github.com/k2p-ed/easy-ducks"
},
"license": "MIT",
"private": false,
"main": "lib/easy-ducks.cjs.js",
"module": "lib/easy-ducks.esm.js",
"scripts": {
"build": "rimraf lib && rollup -c",
"ci": "yarn test && yarn lint && yarn flow check",
"lint": "eslint src",
"precommit": "yarn ci",
"prepublish": "yarn build",
"preversion": "yarn ci",
"start": "webpack-dev-server --config example/webpack.config.js --port 7000",
"test": "jest --coverage"
},
"devDependencies": {
"axios": "^0.18.0",
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-transform-flow-strip-types": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.82.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"jest-plugin-context": "^2.9.0",
"normalize.css": "^8.0.0",
"react": "^16.5.2",
"react-content-loader": "^3.2.0",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"style-loader": "^0.20.3",
"styled-components": "^3.4.9",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"whatwg-fetch": "^3.0.0"
},
"peerDependencies": {
"redux": ">= 3.7.2, >= 4",
"redux-thunk": ">= 2.2.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./src/test/testHelper.js",
"jest-plugin-context/setup"
]
},
"keywords": [
"async",
"ducks",
"react",
"react-redux",
"redux",
"redux-thunk"
]
}