forked from mother/react-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.12 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
{
"name": "react-files",
"version": "2.4.9",
"main": "dist/index.js",
"description": "A file input (dropzone) management component for React",
"scripts": {
"build": "rm -rf dist && webpack",
"dev": "node server.js",
"demo": "node server.js",
"test": "mocha --require @babel/register --recursive test/test.js",
"test:watch": "mocha --require @babel/register --recursive test/test.js --watch --reporter min",
"webpack-analyze": "mkdir -p .tmp; NODE_ENV=production webpack --config webpack.config.js --profile --json > .tmp/stats.json; webpack-bundle-analyzer .tmp/stats.json"
},
"files": [
"dist/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mother/react-files.git"
},
"keywords": [
"react",
"reactjs",
"component",
"file",
"files",
"input",
"dropzone"
],
"author": "Mother Co",
"license": "MIT",
"bugs": {
"url": "https://github.com/mother/react-files/issues"
},
"homepage": "https://github.com/mother/react-files",
"peerDependencies": {
"react": "^15.0.0 || ^16 || ^17",
"react-dom": "^15.0.0 || ^16 || ^17"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-react": "7.0.0-beta.44",
"@babel/preset-stage-0": "7.0.0-beta.44",
"@babel/register": "7.0.0-beta.44",
"axios": "0.16.2",
"babel-eslint": "7.1.1",
"babel-loader": "8.0.0-beta.2",
"blob": "0.0.4",
"chai": "3.5.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "3.4.0",
"eslint-config-standard": "6.0.0",
"eslint-config-standard-react": "4.0.0",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-react": "6.2.0",
"eslint-plugin-standard": "2.0.0",
"express": "4.16.3",
"form-data": "2.3.1",
"jsdom": "9.4.2",
"mocha": "5.0.5",
"multer": "1.3.0",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"webpack": "4.4.1",
"webpack-bundle-analyzer": "2.11.1",
"webpack-cli": "2.0.13",
"webpack-dev-middleware": "3.1.0",
"webpack-hot-middleware": "2.21.2"
}
}