forked from synapsestudios/react-drop-n-crop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.36 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
{
"name": "@synapsestudios/react-drop-n-crop",
"version": "0.2.0",
"description": "A combined implementation of react-dropzone and react-cropper",
"repository": {
"type": "git",
"url": "https://github.com/synapsestudios/react-drop-n-crop.git"
},
"bugs": {
"url": "https://github.com/synapsestudios/react-drop-n-crop/issues"
},
"author": "Synapse Studios",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"react",
"javascript",
"drop-n-crop",
"dropzone",
"cropper",
"react-cropper",
"image-cropper"
],
"scripts": {
"clean": "rm -rf lib && rm -rf .out",
"build": "npm run clean && babel src -d lib && npm run build-stylus",
"build-stylus": "stylus styles/index.styl -o lib/react-drop-n-crop.css && stylus styles/index.styl -c -u autoprefixer-stylus -o lib/react-drop-n-crop.min.css && cp styles/index.styl lib/react-drop-n-crop.styl",
"precommit": "lint-staged",
"prepublish": "eslint src && npm run build",
"start": "npm run storybook",
"storybook": "stylus -w styles/index.styl -u autoprefixer-stylus -c -o styles/index.css & start-storybook -p 5000 -s storybook",
"storybook-build": "stylus styles/index.styl -u autoprefixer-stylus -c -o styles/index.css && build-storybook -s storybook -o .out",
"storybook-deploy": "npm run storybook-build && storybook-to-ghpages"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash.includes": "^4.3.0",
"prop-types": "^15.5.8",
"react-cropper": "^0.12.0",
"react-dropzone": "^3.13.0"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-deployer": "^1.2.0",
"autoprefixer-stylus": "^0.13.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2",
"stylus": "^0.54.5"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}