-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "redux-box",
"version": "2.0.0-beta.1",
"description": "A redux container to scaffold redux based applications in simplest possible way.",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage --collectCoverageFrom=src/**/*.js",
"test:coveralls": "jest --coverage --collectCoverageFrom=src/**/*.js --coverageReporters=text-lcov | coveralls",
"build": "babel src --out-dir dist",
"docs:jsdoc": "vuepress-jsdoc --source ./src --dist ./docs --folder api --title API --exclude ./src/getReducer.js,./src/composeEnhancers.js ",
"docs:dev": "npm run docs:jsdoc && vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/anish000kumar/redux-box.git"
},
"keywords": [
"redux",
"react",
"javascript",
"react-native",
"vue"
],
"author": "Anish Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/anish000kumar/redux-box/issues"
},
"dependencies": {
"immer": "^8.0.1",
"react": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"regenerator-runtime": "^0.13.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.6",
"create-react-class": "^15.6.3",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"jsdoc": "^3.5.5",
"jsdoc-template": "^1.2.0",
"jsdoc-to-markdown": "^4.0.1",
"prop-types": "^15.7.2",
"react-addons-test-utils": "15.2.0",
"react-dom": "^16.8.6",
"react-test-renderer": "^15.4.1",
"react-testing-library": "^6.1.2",
"semantic-release": "^17.2.3",
"vuepress": "^0.14.10",
"vuepress-jsdoc": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run build",
"pre-push": "npm test",
"pre-release": "npm test && npm run build"
}
},
"homepage": "https://github.com/anish000kumar/redux-box#readme"
}