-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
executable file
·62 lines (62 loc) · 1.75 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
{
"name": "react-avatar-edit",
"version": "1.2.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",
"build:example": "webpack --config webpack.example.js"
},
"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.16.0",
"exif-js": "2.3.0",
"konva": "8.3.14"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-es2015": "7.0.0-beta.53",
"@babel/preset-react": "7.18.6",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-loader": "9.1.0",
"compression-webpack-plugin": "9.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"html-webpack-plugin": "5.3.1",
"prettier": "2.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup-webpack-loader": "1.0.0",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
},
"peerDependencies": {
"react": "^16.x || ^17 || ^18"
}
}