-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.42 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.42 KB
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
{
"name": "react-multiple-image-input",
"description": "A package for uploading multiple images at a time in react",
"version": "2.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/codenaz/react-multiple-image-input"
},
"keywords": [
"react",
"image",
"upload",
"uploader",
"crop"
],
"author": {
"name": "Nwakwoke Patrick",
"email": "patricknwak@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/plugin-transform-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"del-cli": "^3.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-image-crop": "^11.0.6",
"react-scripts": "5.0.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.1.1",
"rollup-plugin-visualizer": "^3.3.1",
"style-loader": "^1.1.3",
"styled-components": "^6.1.13"
},
"scripts": {
"start": "react-scripts start",
"build": "del dist && rollup -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}