-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "react-hoc-query",
"version": "1.2.4",
"description": "HOC to help you query restful data",
"main": "lib/index.js",
"repository": "https://github.com/sethyuan/react-hoc-query.git",
"author": "sethyuan <[email protected]>",
"license": "MIT",
"scripts": {
"cleanup": "rm -rf lib",
"build": "babel src -d lib",
"lint": "prettier --write \"src/**/*.js\" && eslint_d --fix src",
"precommit": "lint-staged",
"prepare": "yarn run cleanup && yarn build"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint_d --fix",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.5.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.2.1",
"eslint_d": "^5.1.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"prettier": "^1.9.2"
},
"peerDependencies": {
"react": ">=15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"dependencies": {
"immutability-helper": "^2.3.1",
"lru-fast": "^0.2.2",
"react-hoc-timerfuncs": "^1.0.1"
}
}