-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.26 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
{
"name": "@lecstor/redux-helpers",
"version": "5.0.0",
"description": "Redux boilerplate reduction and lazy loading of store slices",
"author": "Jason Galea <[email protected]> (http://lecstor.com)",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "es/index.js",
"scripts": {
"build": "rollup --config",
"clean": "rimraf lib es coverage",
"prepare": "yarn clean && yarn build",
"prepublishOnly": "yarn test && yarn lint",
"test": "jest",
"check-types": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn lint --fix"
},
"keywords": [
"redux"
],
"repository": "github:lecstor/redux-helpers",
"bugs": "https://github.com/lecstor/redux-helpers/issues",
"files": [
"es",
"lib",
"src"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^7.0.5",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^1.0.1",
"core-js": "3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-lodash-template": "^0.12.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"jest-styled-components": "^6.3.1",
"offline-plugin": "^5.0.6",
"prettier": "^1.16.4",
"react": "^16.8.1",
"react-burger-menu": "^2.6.5",
"react-date-range": "^1.0.0-beta2",
"react-dom": "^16.8.1",
"react-fetch-hook": "^1.1.0",
"react-hot-loader": "^4.6.5",
"react-redux": "5",
"react-router-dom": "5",
"react-select": "^2.4.1",
"react-testing-library": "^5.1.0",
"redux": "4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "https://github.com/reduxjs/redux-thunk/#4bfa41c",
"rimraf": "^2.6.2",
"rollup": "^0.61.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-uglify": "^3.0.0",
"stats-map": "^1.0.0",
"style-loader": "^0.23.1",
"typescript": "3.3.3"
},
"peerDependencies": {
"redux": "^3.0 || ^4.0"
},
"publishConfig": {
"access": "public"
}
}