forked from kirill3333/react-avatar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.6 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
{
"name": "react-avatar-edit",
"version": "0.9.0",
"description": "ReactJS component to upload, crop, and preview avatars",
"main": "lib/react-avatar.js",
"types": "src/avatar.d.ts",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js --optimize-minimize",
"build:example": "webpack --config webpack.example.js --optimize-minimize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirill3333/react-avatar.git"
},
"author": {
"name": "Kirill Novikov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kirill3333/react-avatar/issues"
},
"keywords": [
"avatar",
"react",
"canvas"
],
"homepage": "https://github.com/kirill3333/react-avatar#readme",
"dependencies": {
"blueimp-load-image": "^5.14.0",
"exif-js": "^2.3.0",
"konva": "^2.5.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "1.1.11",
"html-webpack-plugin": "3.2.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"rollup-webpack-loader": "1.0.0",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "16.x"
}
}