-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
95 lines (95 loc) · 3.02 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-filter-box",
"version": "3.4.3",
"description": "Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility ",
"scripts": {
"start": "node server.js",
"lint": "tslint ./src/**/*.tsx?",
"test": "node --max-old-space-size=16000 ./node_modules/.bin/mocha-webpack --require ignore-styles -r jsdom-global/register --webpack-config webpack.test.config.js --watch \"./test/**/*.ts\"",
"test:windows": "node --max-old-space-size=16000 ./node_modules/mocha-webpack/bin/mocha-webpack --require ignore-styles -r jsdom-global/register --webpack-config webpack.test.config.js --watch \"./test/**/*.ts\"",
"dist": "webpack --config webpack.prod.config.js --progress -p",
"component-package": "webpack --config webpack.component.config.js --progress -p && npm run less",
"less": "lessc ./src/ReactFilterBox.less ./lib/react-filter-box.css",
"prepublish": "npm run component-package"
},
"repository": {
"type": "git",
"url": "https://github.com/nhabuiduc/react-filter-box"
},
"main": "lib/react-filter-box.js",
"types": "./lib/src/ReactFilterBox.d.ts",
"keywords": [
"react-component",
"react",
"reactjs",
"filter",
"condition",
"search",
"hmr",
"live",
"edit",
"webpack"
],
"author": "nha bui duc (http://github.com/nhabuiduc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhabuiduc/react-filter-box"
},
"homepage": "",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/codemirror": "^0.0.70",
"@types/enzyme": "^3.1.15",
"@types/fixed-data-table": "^0.6.34",
"@types/lodash": "^4.14.118",
"@types/mocha": "^5.2.5",
"@types/pegjs": "^0.10.1",
"@types/react": "^16.7.13",
"@types/react-day-picker": "^5.3.0",
"@types/react-dom": "^16.0.11",
"@types/sinon": "^5.0.7",
"babel-loader": "^8.2.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"chai": "^4.2.0",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"fixed-data-table": "^0.6.5",
"ignore-styles": "^5.0.1",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"pegjs-loader": "^0.5.4",
"react-day-picker": "^5.3.0",
"react-hot-loader": "^4.3.12",
"react-test-renderer": "^16.6.3",
"sinon": "^7.1.1",
"style-loader": "^0.23.1",
"ts-loader": "^6.2.1",
"tslint": "^5.17.0",
"typescript": "^3.2.1",
"webpack": "4",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"codemirror": "^5.42.0",
"lodash": "^4.17.21",
"pegjs": "^0.10.0",
"react": "^16.6.3",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.3"
},
"resolutions": {
"set-value": "2.0.1",
"mixin-deep": "1.3.2",
"minimist": "1.2.6"
}
}