-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "react-image-crop",
"version": "10.0.9",
"description": "A responsive image cropping tool for React",
"repository": "https://github.com/DominicTobias/react-image-crop",
"main": "dist/ReactCrop.min.js",
"types": "dist/index.d.ts",
"style": "dist/ReactCrop.css",
"files": [
"dist",
"src"
],
"browserslist": "last 3 versions, not IE > 0",
"scripts": {
"start": "webpack --watch --config test/webpack.config.js",
"build": "webpack",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dominic Tobias (https://github.com/DominicTobias/)",
"keywords": [
"react",
"reactjs",
"image",
"crop",
"react-component"
],
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-eslint": "^10.1.0",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"mini-css-extract-plugin": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"dependencies": {
"clsx": "^1.2.1"
}
}