This repository was archived by the owner on Jan 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.75 KB
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
{
"name": "react-child-root",
"version": "1.0.3",
"description": "creates a child React root",
"main": "lib/react-child-root.js",
"scripts": {
"start": "better-npm-run devserver",
"build": "better-npm-run build:dev && better-npm-run build:prod && better-npm-run build:demo && better-npm-run build:lib",
"buildlib": "better-npm-run build:lib",
"demo": "better-npm-run build:demo",
"clean": "rimraf dist && rimraf lib",
"cleanbuild": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"betterScripts": {
"build:prod": {
"command": "webpack",
"env": {
"WEBPACK_ENV": "production"
}
},
"build:lib": {
"command": "babel src --out-dir lib --ignore example"
},
"build:demo": {
"command": "webpack --config webpack.example.config.js",
"env": {
"WEBPACK_ENV": "production"
}
},
"build:dev": "webpack",
"devserver": {
"command": "webpack-dev-server --config webpack.example.config.js --content-base dist/ --inline --hot --quiet --colors"
}
},
"keywords": [
"react",
"render",
"child",
"root",
"portal",
"gateway",
"jquery",
"kendo"
],
"author": "Brandon Wallace <brandon@experoinc.com>",
"repository": "https://github.com/experoinc/react-child-root",
"license": "MIT",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"better-npm-run": "0.0.13",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-config-standard-react": "^2.5.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"imports-loader": "^0.6.5",
"node-sass": "^3.8.0",
"prop-types": "^15.5.10",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"invariant": "^2.2.1",
"lodash": "^4.13.1"
}
}