-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
109 lines (109 loc) · 3.03 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-drag-drop-files",
"version": "2.4.0",
"description": "Light React Drag & Drop files and images library styled by styled-components",
"author": "Karim <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/react-drag-drop-files.cjs.js",
"module": "dist/react-drag-drop-files.esm.js",
"types": "dist/react-drag-drop-files.d.ts",
"source": "src/react-drag-drop-files.ts",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground": "cd playground && npm run start",
"install-all": "yarn install && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground",
"deploy:npm": "yarn run build && npm publish",
"lint:check": "eslint --ext .ts --ext .tsx .",
"lint:fix": "eslint --fix --ext .ts --ext .tsx .",
"test": "jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"keywords": [
"light-react",
"react",
"react-drag-drop",
"react-select-file",
"drag",
"drop",
"upload",
"select",
"files",
"images",
"styled-compomnets"
],
"repository": {
"type": "git",
"url": "https://github.com/KarimMokhtar/react-drag-drop-files"
},
"homepage": "https://github.com/KarimMokhtar/react-drag-drop-files",
"contributors": [
"Karim Mokhtar <[email protected]>"
],
"readme": "README.md",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"prop-types": "^15.7.2",
"styled-components": "^6.1.11"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@svgr/rollup": "^5.5.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^27.0.1",
"@types/node": "^15.12.4",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react-scripts": "4.0.3",
"rollup": "2.0.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.4",
"web-vitals": "^1.1.2"
},
"volta": {
"node": "14.17.6",
"yarn": "1.22.11"
}
}