-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "react-redux-gen",
"version": "0.1.5",
"description": "A react redux action creator by convention",
"main": "build/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanmtz/react-redux-gen.git"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"redux",
"react",
"action",
"creator",
"crud",
"api",
"rest",
"convention"
],
"author": "Alexandre Magno",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexanmtz/react-redux-gen/issues"
},
"homepage": "https://github.com/alexanmtz/react-redux-gen#readme",
"dependencies": {
"axios": "^0.19.0",
"path": "^0.12.7",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"webpack": "^4.39.3"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"extract-text-webpack-plugin": "^3.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0",
"jest-webpack": "^0.5.1",
"moxios": "^0.4.0",
"redux-mock-store": "^1.5.3",
"webpack-cli": "^3.3.7"
}
}