-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
{
"name": "react-material-file-upload",
"version": "0.0.4",
"description": "File upload compoennt for React with Material UI components",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "https://github.com/iamchathu/react-material-file-upload.git",
"author": "Chathu Vishwajith <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib/",
"tsc": "tsc -b .",
"build": "rollup -c",
"prepare": "install-peers && husky install",
"lint": "eslint 'src/**/*.{ts,tsx}' --quiet --fix ",
"prepublishOnly": "yarn clean && yarn build",
"release": "standard-version",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/material": "^5.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/react": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.2",
"install-peers-cli": "^2.2.0",
"lint-staged": "^11.2.3",
"react": "^17.0.2",
"react-docgen-typescript": "^2.1.1",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"react-dropzone": "^11.4.2"
},
"keywords": [
"react",
"react component",
"file upload",
"material ui",
"upload"
]
}