-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "redux-menu",
"version": "0.0.2",
"description": "A package to help you create a React menu which is connected with Redux state and actions.",
"main": "lib/redux-menu.js",
"scripts": {
"build": "./node_modules/.bin/webpack -p --config webpack.config.production.js",
"dev": "./node_modules/.bin/webpack --config webpack.config.development.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datacamp/redux-menu.git"
},
"keywords": [
"npm",
"redux",
"react",
"menu"
],
"author": "Vincent Vankrunkelsven",
"license": "ISC",
"bugs": {
"url": "https://github.com/datacamp/redux-menu/issues"
},
"homepage": "https://github.com/datacamp/redux-menu#readme",
"dependencies": {
"lodash.isempty": "^4.4.0",
"react-bootstrap": "^0.30.7",
"styled-components": "^1.3.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"webpack": "^1.14.0",
"webpack-bundle-size-analyzer": "^2.2.0"
},
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0"
}
}