-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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-use-data",
"version": "1.0.16",
"description": "React use data is an local store to share data across components based on hooks",
"keywords": [
"React",
"hook",
"store"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist && NODE_ENV=prod webpack --progress --profile --bail",
"build:dev": "rimraf dist && webpack --progress --profile --bail"
},
"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-data.git"
},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.5.1",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.23",
"awesome-typescript-loader": "^5.2.1",
"react": "^16.8.6",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.5.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}