-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "fl-react-utils",
"version": "0.18.1",
"description": "Boilerplate and helper functions for react/redux that can be shared amongst FounderLab apps",
"main": "lib/index.js",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/founderlab/fl-react-utils.git"
},
"scripts": {
"prepublish": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"build": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"watch": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --watch --out-dir ./lib",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js",
"cover": "eval $(cat test/.env) istanbul cover _mocha -- test/**/*.tests.js"
},
"dependencies": {
"classnames": "^2.2.3",
"immutable": "^3.7.4",
"lodash": "^4.0.0",
"queue-async": "^1.0.7",
"react-sidebar": "^2.1.1",
"warning": "^2.1.0",
"react-select": "^0.9.1",
"prop-types": "*"
},
"// wouldBePeerDependencies": {
"react": "*",
"react-sidebar": "*",
"react-bootstrap": "*",
"react-router-bootstrap": "*",
"react-dropzone-s3-uploader": "*",
"reselect": "*",
"react-router": "*",
"redux-router": "*",
"moment": "*"
},
"devDependencies": {
"babel": "^5.8.38",
"babel-eslint": "^6.0.4",
"eslint": "^1.5.1",
"eslint-config-founderlab": "^0.1.0",
"eslint-plugin-react": "^3.4.2",
"expect": "^1.13.0",
"mocha": "^2.2.5",
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dropzone-s3-uploader": "^0.5.2",
"react-router": "^2.4.1",
"react-router-bootstrap": "^0.23.0",
"redux-router": "^1.0.0-beta8",
"reselect": "^2.5.1",
"sinon": "^1.17.1"
}
}