-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "reactmob-filter",
"version": "0.2.1",
"private": false,
"description": "Accessible, extensible, Filter for React.js",
"homepage": "https://github.com/reactmob/dos-filter",
"repository": {
"type": "git",
"url": "git+https://github.com/reactmob/dos-filter.git"
},
"bugs": {
"url": "https://github.com/reactmob/dos-filter/issues"
},
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"keywords": [
"reactmob",
"react",
"reactjs",
"filter",
"react-filter"
],
"author": "liverbool <nukboon@gmail.com>",
"license": "MIT",
"scripts": {
"test": "BABEL_JEST_STAGE=0 jest",
"prepare": "rm -rf ./lib && babel ./src --out-dir ./lib --source-maps --presets es2015,stage-0,react",
"start": "webpack-dev-server --hot --inline",
"demo": "webpack"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.4.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"eslint-watch": "^3.1.2",
"polished": "^1.3.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.3.1",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"immutable": "^3.8.1",
"react-autocomplete": "^1.5.10",
"throttle-debounce": "^1.0.1",
"with-query": "^1.0.2"
},
"peerDependencies": {
"react": "^15.0.1-0 || ^16.0.0-0",
"react-dom": "^15.0.1-0 || ^16.0.0-0"
}
}