forked from sah/material-ui-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.08 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
{
"name": "mui-file-dropzone",
"version": "4.0.2",
"description": "A Material-UI file-upload dropzone. Written in TypeScript.",
"license": "MIT",
"author": "Yuval",
"repository": {
"type": "git",
"url": "https://github.com/Deckstar/mui-file-dropzone.git"
},
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"mui",
"dropzone",
"upload",
"react upload"
],
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"build": "tsc -b",
"start": "tsc -b --watch",
"docs:dev": "styleguidist server",
"docs:build": "styleguidist build",
"predocs:deploy": "yarn docs:build",
"docs:deploy": "gh-pages -d styleguide",
"prepublish": "npx tsc"
},
"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",
"prop-types": "^15.7.2",
"react": ">= 17.0",
"react-dom": ">= 17.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.1.0",
"babel-plugin-optimize-clsx": "^2.6.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gh-pages": "^1.2.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.4",
"webpack": "^5.65.0"
}
}