-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "@centarius/react-loadable",
"version": "1.1.3",
"description": "React Loadable HOC for Centarius",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": "https://github.com/rayandrews/centarius/tree/master/packages/react-loadable",
"author": {
"name": "Ray Andrew",
"email": "[email protected]",
"url": "https://github.com/rayandrews"
},
"license": "MIT",
"private": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"react-native",
"react-native-web",
"centarius",
"react-hoc",
"hoc",
"react-loadable",
"code-splitting",
"react-context",
"provider",
"consumer"
],
"scripts": {
"build": "yarn clean && yarn build-only",
"build-only": "babel src -d dist --root-mode upward",
"build-dev": "yarn build-only --watch",
"clean": "rimraf dist"
},
"dependencies": {
"centarius": "^1.1.3",
"hoist-non-react-statics": "^3.3.0",
"react-loadable": "^5.5.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-react-jsx-source": "7.2.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/template": "7.4.4",
"babel-plugin-add-module-exports": "^0.3.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.14"
},
"peerDependencies": {
"prop-types": "^15.x.x",
"react": "16.x.x",
"react-router-dom": ">=4.0.0"
},
"gitHead": "66b2b4b2145306773cb7d7d6f21a0eeff4b3afc4"
}