-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.24 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
{
"name": "react-redux-composable-list",
"version": "0.8.0",
"description": "Composable List in React and Redux",
"main": "dist/bundle.js",
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"redux": "^3.0.0",
"react-redux": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"lodash.sortby": "^4.7.0",
"prop-types": "^15.5.7"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.27.3",
"deep-freeze": "0.0.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"gitbook-cli": "^2.3.0",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"mocha": "^2.5.3",
"react": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"style-loader": "^0.18.1",
"webpack": "1.12.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"build-dev": "webpack --progress --profile --colors --config ./webpack.config.dev.js",
"build-dist": "webpack -p --config ./webpack.config.prod.js",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"prepare": "npm run build-dist",
"test": "mocha --compilers js:babel-core/register --require ./mocha.config.js 'src/**/*spec.js'",
"test:watch": "npm run test -- -w",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmallImprovements/react-redux-composable-list.git"
},
"keywords": [
"react",
"redux",
"react-component",
"react-list",
"list",
"redux-list"
],
"author": "Robin Wieruch <[email protected]> (https://www.robinwieruch.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SmallImprovements/react-redux-composable-list/issues"
},
"homepage": "https://github.com/SmallImprovements/react-redux-composable-list#readme",
"tags": [
"react",
"redux",
"table",
"data",
"grid"
]
}