forked from mosch/react-avatar-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.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
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
97
98
99
100
{
"name": "react-avatar-editor",
"version": "13.0.0",
"description": "Avatar / profile picture component. Resize and crop your uploaded image using a intuitive user interface.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist && rimraf dist-docs",
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint --cache --ext .js,.jsx src",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"demo:build": "parcel build docs/index.html -d dist-docs",
"demo:watch": "parcel docs/index.html",
"prepublishOnly": "yarn run lint && yarn run test && yarn run clean && yarn run build",
"postversion": "git push --tags origin HEAD"
},
"author": {
"name": "Moritz Schwoerer",
"email": "[email protected]"
},
"contributors": [
{
"name": "Daniel Lehr",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mosch/react-avatar-editor.git"
},
"license": "MIT",
"keywords": [
"react-component",
"reactjs",
"react",
"canvas",
"avatar",
"editor",
"profile",
"image"
],
"dependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/runtime": "^7.12.5",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@rollup/plugin-babel": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cssnano": "4.1.10",
"eslint": "7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"jest": "26.6.3",
"parcel-bundler": "1.12.4",
"prettier": "2.2.0",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^11.2.4",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-uglify": "6.0.4",
"rollup-watch": "^4.3.1",
"snazzy": "^9.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.14.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist",
"src"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"testURL": "http://localhost"
}
}