forked from t4t5/react-image-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.83 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
{
"name": "@bearcanrun/react-image-cropper",
"version": "1.3.6",
"description": "react image crop",
"main": "app.js",
"scripts": {
"start": "npm-run-all --parallel babel server",
"server": "cross-env NODE_ENV=development PORT=3001 webpack-serve --config ./webpack.dev.config.js",
"babel": "babel --watch component/ --out-dir lib/",
"build": "NODE_ENV=production webpack --mode production --config ./webpack.config.js",
"lint": "prettier-standard 'component/*.js'",
"lint-demo": "prettier-standard 'demo/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/nearwood/react-image-cropper"
},
"keywords": [
"react",
"image crop",
"front crop",
"canvas",
"react component"
],
"author": "jerryshew",
"license": "MIT",
"homepage": "https://github.com/jerryshew",
"dependencies": {
"deep-extend": "^0.6.0",
"npm-run-all": "^4.1.5",
"prop-types": "15.6.0",
"react": "16.5.2",
"react-dom": "16.5.2"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer-loader": "^3.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"connect-history-api-fallback": "^1.5.0",
"cross-env": "^1.0.8",
"css-loader": "^0.28.11",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"file-loader": "^1.1.11",
"koa-connect": "^2.0.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^2.1.6",
"pre-commit": "^1.2.2",
"prettier": "^1.15.3",
"prettier-standard": "^8.0.1",
"react-hot-loader": "^4.3.12",
"react-transform-hmr": "^1.0.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.2",
"webpack-hot-client": "^4.1.1",
"webpack-merge": "^4.1.4",
"webpack-serve": "^1.0.4"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/",
"build/"
]
}
}