-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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": "redux-effects-formdata-uploader",
"version": "1.4.1",
"description": "Redux Effects File Uploader using FormData",
"main": "lib/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/recruit-tech/redux-effects-formdata-uploader.git"
},
"keywords": [
"redux",
"effects",
"formdata",
"uploader"
],
"author": "yosuke-furukawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/recruit-tech/redux-effects-formdata-uploader/issues"
},
"homepage": "https://github.com/recruit-tech/redux-effects-formdata-uploader#readme",
"files": [
"lib",
"src",
"index.d.ts"
],
"scripts": {
"build": "babel src --out-dir lib --ignore src/__tests__",
"clean": "rimraf lib/*",
"lint": "eslint src",
"preversion": "npm test",
"format": "prettier src/**/*.js --write",
"test": "jest",
"version": "npm-run-all clean build"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.2",
"@babel/plugin-proposal-object-rest-spread": "7.14.2",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"@babel/preset-env": "7.14.2",
"@babel/register": "7.13.16",
"babel-eslint": "10.1.0",
"eslint": "7.26.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"express": "4.17.1",
"jest": "26.6.3",
"multer": "1.4.2",
"npm-run-all": "4.1.5",
"prettier": "2.3.0",
"redux": "4.1.0",
"redux-actions": "2.6.5"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.0.5",
"@types/redux": "^3.6.0",
"axios": "^0.21.0",
"form-data": "^4.0.0",
"isomorphic-form-data": "^2.0.0"
},
"jest": {
"testRegex": "(/__tests__/.*\\.(test))\\.(js)$",
"testEnvironment": "node"
}
}