forked from dbilgili/Custom-ReactJS-Dropdown-Components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.65 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
{
"name": "reactjs-dropdown-component",
"version": "1.2.0",
"description": "Single and multi select dropwdown menu components",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack"
},
"author": "Dogacan Bilgili",
"keywords": [
"react",
"dropdown",
"menu"
],
"repository": {
"type": "git",
"url": "https://github.com/dbilgili/Custom-ReactJS-Dropdown-Components.git"
},
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@svgr/webpack": "^4.3.3",
"autoprefixer": "^9.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"stylelint": "^13.3.3",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"pluralize": "^8.0.0",
"prop-types": "^15.7.2"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}