-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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
{
"name": "react-hooks-http",
"version": "0.1.2",
"description": "useHTTPCall hook for interacting with remote APIs; very young, experimental, feedback and contributions welcome",
"keywords": [],
"main": "lib/index.js",
"dependencies": {
"react": "^16.8.6",
"react-dom": "16.8.0-alpha.1",
"react-json-tree": "0.11.2",
"react-timeago": "4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"enzyme": "^3.10.0",
"flow-bin": "^0.104.0",
"lodash": "^4.17.15",
"prettier": "^1.18.2",
"react-scripts": "2.1.3-next.6a95aae9"
},
"scripts": {
"cpflow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"start": "react-scripts start",
"example": "browserify -t babelify --debug examples/simple/index.js -o examples/simple/bundle.js",
"build": "babel src/ --out-dir lib/",
"prepare": "babel src/ --out-dir lib/",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}