-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.59 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
{
"name": "redux-reducers-injector",
"version": "0.3.3",
"description": "Allows dynamically injecting reducers into a redux store at runtime. Support HMR and SSR.",
"main": "lib/ReduxInjector.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets @babel/preset-env,@babel/preset-react",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuillaumeCisco/redux-reducers-injector"
},
"keywords": [
"redux",
"react"
],
"author": "Guillaume Cisco <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuillaumeCisco/redux-reducers-injector/issues"
},
"homepage": "https://github.com/GuillaumeCisco/redux-reducers-injector#readme",
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.13.8",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.13.5",
"@babel/plugin-proposal-export-namespace-from": "7.12.13",
"@babel/plugin-proposal-function-sent": "7.12.13",
"@babel/plugin-proposal-json-strings": "7.13.8",
"@babel/plugin-proposal-numeric-separator": "7.12.13",
"@babel/plugin-proposal-throw-expressions": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.13.9",
"@babel/preset-react": "7.12.13",
"eslint": "7.21.0",
"eslint-plugin-react": "7.22.0"
},
"dependencies": {
"lodash": "4.17.21",
"redux": "4.0.5"
}
}