-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2 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
{
"name": "react-aws-s3-uploader",
"version": "1.0.3",
"description": "Simple React AWS S3 Uploader",
"main": "build/index.js",
"scripts": {
"format": "prettier --write '{*.js,src/**/*.{js,jsx}}'",
"lint": "eslint src/ --fix",
"start": "webpack --mode development --config webpack.config.js --watch",
"build": "webpack --mode production --config webpack.config.js --progress"
},
"prepublishOnly": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/gndx/react-aws-s3-uploader.git"
},
"keywords": [
"react",
"AWS",
"S3",
"file",
"file-upload",
"s3-upload",
"react-s3"
],
"author": {
"name": "Oscar Barajas",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gndx/react-aws-s3-uploader/issues"
},
"homepage": "https://github.com/gndx/react-aws-s3-uploader#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.5",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-watch": "^5.1.2",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"react": "^16.8.6",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"aws-sdk": "^2.485.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"aws-sdk": "^2.485.0",
"react": "^16.8.6",
"react-dom": "^16.2.0",
"prop-types": "^15.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run format",
"npm run lint",
"git add"
]
}
}