-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 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
58
{
"name": "@utrustdev/react-s3-post-uploader",
"version": "0.2.1",
"description": "React component that handle uploading to S3 bucket via POST.",
"main": "index.js",
"author": "Zdenko Nevrala",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:utrustdev/react-s3-post-uploader.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"upload",
"component",
"s3",
"bucket"
],
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11",
"react": "^16.6.3",
"xml-js": "^1.6.8"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-flowtype-errors": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.87.0",
"flow-copy-source": "^2.0.2",
"flow-remove-types": "^1.2.3",
"prettier": "^1.15.3"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.js*\"",
"copy-to-example": "flow-remove-types src/ -d example/src/components",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run clean && npm run flowbuild && npm run copy-to-example",
"build": "babel src -d dist",
"flow": "flow check"
}
}