forked from dominictobias/react-image-crop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "react-image-crop",
"version": "7.0.3",
"description": "A responsive image cropping tool for React",
"repository": "https://github.com/DominicTobias/react-image-crop",
"main": "dist/ReactCrop.js",
"style": "dist/ReactCrop.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --progress --colors --watch --config demo/webpack.config.js & npm run sass-watch",
"sass-watch": "node-sass lib/ReactCrop.scss dist/ReactCrop.css --watch",
"build:js": "cross-env NODE_ENV=production webpack",
"build:css": "node-sass lib/ReactCrop.scss dist/ReactCrop.css",
"build": "npm run build:js && npm run build:css"
},
"author": "Dominic Tobias <[email protected]>",
"keywords": [
"react",
"reactjs",
"image",
"crop",
"react-component"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"node-sass": "^4.10.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"style-loader": "^0.23.1",
"webpack": "^3.12.0"
},
"peerDependencies": {
"react": ">=15.2.2"
},
"dependencies": {
"prop-types": ">=15.5.8"
}
}