-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
126 lines (126 loc) · 3.63 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-images-uploading",
"version": "3.1.6",
"description": "The simple images uploader applied Render Props pattern. This approach allows you to fully control UI component and behaviours.",
"author": {
"name": "vutoan266",
"email": "[email protected]",
"url": "https://github.com/vutoan266"
},
"contributors": [
{
"name": "davidnguyen179",
"email": "[email protected]",
"url": "https://github.com/davidnguyen179"
},
{
"name": "conandk",
"email": "[email protected]",
"url": "https://github.com/conandk"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vutoan266/react-images-uploading"
},
"bugs": {
"url": "https://github.com/vutoan266/react-images-uploading/issues"
},
"homepage": "https://github.com/vutoan266/react-images-uploading/blob/master/README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"build:web": "webpack --config ./webpack/webpack.prod.js",
"start": "node ./server",
"prettier": "./node_modules/.bin/prettier --write ./**/*.{js,ts,tsx,md}",
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint . --ext .ts,.tsx",
"lint:fix": "./node_modules/.bin/eslint . --ext .ts,.tsx --fix",
"contributors:add": "./node_modules/.bin/all-contributors add",
"contributors:generate": "./node_modules/.bin/all-contributors generate",
"toc": "./node_modules/.bin/doctoc --notitle README.md"
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/react": "^10.4.9",
"@types/jest": "^26.0.10",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/sinon": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.0",
"all-contributors-cli": "^6.17.2",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"css-loader": "^4.2.2",
"doctoc": "^1.4.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"gh-pages": "^1.2.0",
"git-hooks-plus": "^1.0.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2",
"less-loader": "^7.0.0",
"mini-css-extract-plugin": "^0.10.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-merge": "^5.1.2"
},
"files": [
"dist"
],
"keywords": [
"image",
"images",
"upload",
"uploader",
"uploading",
"react image upload",
"react images uploading",
"drag",
"drag and drop",
"image drag and drop",
"reactjs",
"typescript",
"javascript",
"render props",
"react-component"
]
}