-
Notifications
You must be signed in to change notification settings - Fork 782
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "react-loadable",
"version": "5.5.0",
"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",
"prepare": "yarn build"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"express": "^4.16.4",
"flow-bin": "^0.83.0",
"jest": "^23.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"webpack": "^4.20.2"
},
"peerDependencies": {
"react": "*"
}
}