-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "react-use-cache",
"version": "1.0.9",
"description": "React use cache is local cache manager to avoid repeat requesting data from server",
"keywords": [
"React",
"hook",
"cache"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist && NODE_ENV=production webpack",
"build:dev": "rimraf dist && webpack "
},
"author": {
"name": "Ricky Jiao",
"email": "ricky.jiao86@gmail.com"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/RickyJiao/react-use-cache.git"
},
"peerDependencies": {
"react": "16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@types/react": "16.9.35",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.1.0",
"react": "16.13.1",
"typescript": "3.9.6",
"webpack": "4.29.6",
"webpack-cli": "^3.3.11"
}
}