-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "dbb-img-crop",
"version": "1.2.1",
"description": "一个react的弹框式图片裁剪插件,支持预览,旋转",
"repository": "https://github.com/dbb1016606796/dbb-img-crop",
"main": "dist/ReactCrop.min.js",
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "http-server ./test -p 10086",
"start": "webpack --progress --colors --watch --config test/webpack.config.js",
"sass-watch": "node-sass lib/ReactCrop.scss dist/ReactCrop.css --watch",
"build:js": "webpack",
"build:css": "node-sass lib/ReactCrop.scss dist/ReactCrop.css",
"build:old": "npm run build:js && npm run build:css",
"build": "webpack",
"prepare": "npm run build"
},
"author": "dengbinbin",
"keywords": [
"react",
"reactjs",
"image",
"crop",
"react-component"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.23.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.4",
"eslint": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"precss": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-select": "^3.1.0",
"sass-loader": "^10.0.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": ">=15.2.2"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"clsx": "^1.0.4",
"core-js": "^3.4.2",
"prop-types": "^15.7.2",
"react-image-crop": "^8.6.5"
}
}