-
Notifications
You must be signed in to change notification settings - Fork 247
/
package.json
87 lines (87 loc) · 2.44 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
{
"name": "material-ui-dropzone",
"version": "3.5.0",
"description": "A Material-UI file-upload dropzone",
"license": "MIT",
"author": "Yuval",
"repository": {
"type": "git",
"url": "https://github.com/Yuvaleros/material-ui-dropzone.git"
},
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"dropzone",
"upload",
"react upload"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=8",
"yarn": ">=1"
},
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn build",
"docs:dev": "styleguidist server",
"docs:build": "styleguidist build",
"predocs:deploy": "yarn docs:build",
"docs:deploy": "gh-pages -d styleguide"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"clsx": "^1.0.2",
"react-dropzone": "^10.2.1"
},
"peerDependencies": {
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.1",
"prop-types": "^15.7.2",
"react": ">= 17.0",
"react-dom": ">= 17.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/plugin-transform-react-constant-elements": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-optimize-clsx": "^2.6.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-styleguidist": "^11.0.4",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-size-snapshot": "^0.11.0",
"webpack": "^4.42.1"
}
}