-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.94 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-uselazy",
"version": "2.0.0",
"description": "a custom hook for multiple components lazy load",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "cross-env webpack-dev-server --hot --reload --config webpack.dev.config.babel.js",
"build": "npm run clean | tsc",
"clean": "rimraf ./dist/*"
},
"keywords": [
"jsx",
"babel",
"react"
],
"author": "yu.hongda",
"license": "MIT",
"dependencies": {
"@types/object-hash": "^1.3.0",
"@types/uuid": "^3.4.4",
"object-hash": "^1.3.1",
"require-resolve": "0.0.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"acorn": "^6.1.1",
"antd": "^3.19.8",
"array-from": "^2.1.1",
"autoprefixer-loader": "^3.2.0",
"babel-loader": "^8.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-import": "^1.11.0",
"babel-plugin-jsx-plus": "^1.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.13.0",
"babel-preset-stage-2": "^6.1.18",
"babel-register": "^6.24.1",
"babel-runtime": "^5.8.0",
"body-parser": "^1.17.2",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"console-polyfill": "^0.3.0",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.6.0",
"core-decorators": "^0.14.0",
"create-react-class": "^15.6.3",
"cross-env": "^1.0.8",
"css-loader": "^0.28.4",
"dts-generator": "^3.0.0",
"es6-promise": "^4.1.0",
"es6-weak-map": "^2.0.2",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^4.0.0-alpha.2",
"image-webpack-loader": "^3.2.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"mini-css-extract-plugin": "^0.5.0",
"mobx": "^4.9.2",
"mobx-react": "^5.4.3",
"mobx-react-lite": "^1.0.1",
"mobx-state-tree": "^3.10.0",
"mocha": "^5.2.0",
"moment": "^2.24.0",
"node-sass": "^3.13.1",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-pxtorem": "^4.0.1",
"postcss-smart-import": "^0.7.2",
"precss": "^1.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.7.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"rimraf": "^2.6.3",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.0",
"style-resources-loader": "^1.2.1",
"styled-jsx": "^3.2.1",
"styled-jsx-plugin-postcss": "^2.0.0",
"styled-jsx-plugin-sass": "^1.0.0",
"stylus-loader": "^1.4.2",
"svg-sprite-loader": "0.3.1",
"template-html-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.7",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/yuhongda/react-useLazy.git"
}
}