-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.76 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
{
"name": "react-async-wrapper",
"version": "1.0.6",
"description": "resolve async props for react component",
"homepage": "https://vipcxj.github.io/react-async-wrapper",
"main": "cjs/index.js",
"module": "es/index.js",
"files": [
"cjs",
"es",
"umd"
],
"repository": {
"type": "git",
"url": "https://github.com/vipcxj/react-async-wrapper.git"
},
"license": "MIT",
"author": "Xiaojing Chen <[email protected]> (https://github.com/vipcxj)",
"bugs": {
"url": "https://github.com/vipcxj/react-async-wrapper/issues"
},
"scripts": {
"build": "node ./tools/build.js",
"prepublishOnly": "node ./tools/build.js",
"clean": "git clean -fdX .",
"lint": "eslint src",
"test": "jest",
"precommit": "npm run lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"peerDependencies": {
"react": ">=16",
"prop-types": ">=15"
},
"dependencies": {
"is-promise": "^2.1.0",
"hoist-non-react-statics": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-info": "^4.0.7",
"@storybook/react": "^4.0.7",
"@storybook/storybook-deployer": "^2.3.0",
"@types/lodash": "^4.14.118",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^0.3.3",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gzip-size": "^5.0.0",
"highlight.js": "^9.13.1",
"lodash": "^4.17.11",
"pretty-bytes": "^5.1.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-markdown": "^4.0.3",
"rollup": "^0.67.3",
"rollup-analyzer-plugin": "^1.2.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-closure-compiler-js": "^1.0.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"classnames": "^2.2.6"
},
"keywords": [
"react",
"async"
]
}