forked from joshcarr/react-structured-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.83 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
79
80
{
"name": "react-structured-filter",
"version": "4.5.2",
"description": "React component that provides autocomplete faceted search queries",
"main": "lib/main.js",
"author": "Josh Carr",
"homepage": "https://github.com/joshcarr/react-structured-filter",
"repository": {
"type": "git",
"url": "https://github.com/joshcarr/react-structured-filter.git"
},
"dependencies": {
"classnames": "^2.2.3",
"fuzzy": "^0.1.0",
"moment": "*",
"react-datetime": "^2.1.0",
"react-onclickoutside": "^4.9.0",
"object-assign": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0-beta10",
"babel-loader": "^6.2.3",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-loader": "^1.2.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.16.1",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"faker": "^3.1.0",
"file-loader": "^0.8.5",
"griddle-callback": "^0.2.1",
"griddle-react": "^0.3.1",
"less": "^2.6.0",
"less-loader": "^2.2.1",
"react": "^0.14.0",
"react-docgen": "^2.19.0",
"react-dom": "^0.14.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"prop-types": "^15.5.7",
"redbox-react": "^1.2.2",
"rimraf": "^2.5.1",
"style-loader": "^0.13.1",
"taffy": "^2.6.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.4"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"prop-types": "^15.5.7"
},
"scripts": {
"example:clean": "rimraf example/dist",
"example:copy:static": "cp example/src/index.html example/dist/index.html",
"example:build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"example:build": "npm run example:clean && npm run example:build:webpack && npm run example:copy:static",
"example:start": "node devServer.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"clean": "rimraf lib",
"prebuild": "npm run lint && npm run clean",
"build": "NODE_ENV=production babel src --out-dir lib && cp src/react-structured-filter.css lib/react-structured-filter.css",
"docs": "cd docs && react-docgen ../src/tokenizer/index.js | ./buildDocs.sh",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"license": "BSD-3-Clause"
}