-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.74 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
{
"name": "api-client-react",
"version": "2.1.0",
"description": "Small library to simplify the connection with api in React.",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"prebuild": "npm run clean",
"build": "rollup -c",
"clean": "rimraf dist",
"prepare": "npm run prebuild && npm run build",
"test": "BABEL_ENV=test jest --watchAll --no-cache --config ./jest.config.js",
"test:coverage": "BABEL_ENV=test jest --watchAll --coverage --no-cache --config ./jest.config.js",
"test:ci": "BABEL_ENV=test jest --coverage --no-cache --config ./jest.config.js --runInBand",
"start:example": "webpack-dev-server --config ./webpack.config.js --mode development",
"release": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeiker26/api-client-react.git"
},
"keywords": [
"api-client",
"axios",
"react",
"rxjs"
],
"author": "Jesus Javega",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeiker26/api-client-react/issues"
},
"homepage": "https://github.com/jeiker26/api-client-react#readme",
"peerDependencies": {
"react": "^16.7.0"
},
"dependencies": {
"axios": "^0.18.0",
"axios-retry": "^3.1.1",
"hoist-non-react-statics": "^3.3.0",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jsdom": "^13.2.0",
"lint-staged": "^8.1.1",
"prettier": "1.16.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.5",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.1",
"sinon": "^7.2.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}