-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·52 lines (52 loc) · 1.5 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
{
"name": "super-select",
"description": "Flexible aternative to select element",
"keywords": [
"react-component",
"select",
"select-multiple",
"datalist",
"multiselect"
],
"version": "1.4.1",
"homepage": "https://cohros.github.io/super-select",
"issues": "https://github.com/cohros/super-select/issues",
"license": "MIT",
"author": "Luís Henrique Faria <[email protected]> (https://github.com/beeblebrox3)",
"main": "dist/SuperSelect.js",
"sideEffects": false,
"dependencies": {
"fuse.js": "^3.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^1.1.6",
"node-sass": "^4.5.3",
"normalize.css": "^8.0.0",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.dev.js"
}
}