forked from jamiebuilds/react-loadable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "react-loadable",
"version": "5.3.1",
"description": "A higher order component for loading components with promises",
"main": "lib/index.js",
"author": "James Kyle <[email protected]>",
"license": "MIT",
"repository": "thejameskyle/react-loadable",
"files": [
"babel.js",
"webpack.js",
"lib/**"
],
"scripts": {
"test": "jest --coverage",
"build": "babel src -d lib",
"start": "yarn build && webpack && babel-node example/server.js",
"prepublish": "yarn build"
},
"dependencies": {
"prop-types": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"express": "^4.16.1",
"flow-bin": "^0.41.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"webpack": "^3.6.0"
},
"peerDependencies": {
"react": "*"
}
}