forked from wix-incubator/react-module-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "react-module-container",
"version": "1.0.0",
"description": "",
"homepage": "",
"private": false,
"author": {
"name": "Shahar Talmi",
"email": "[email protected]",
"url": ""
},
"scripts": {
"start": "wix-node-build start --entry-point=./dist/test/mock/fake-server.js",
"build": "wix-node-build lint && wix-node-build build",
"test": "wix-node-build test",
"release": "wix-node-build release"
},
"files": [
"dist"
],
"main": "dist/src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"wix": {
"entry": {
"react-module-container": "./react-module-container.js",
"demo": "./demo/demo.js",
"module": "./demo/module.js",
"lazy/angular-module": "./lazy/angular-module.js",
"lazy/react-module": "./lazy/react-module.js"
},
"externals": {
"react": "React",
"react-dom": "ReactDOM"
}
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"express": "^4.13.4",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"wix-node-build": "latest"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"dependencies": {
"lodash": "^4.16.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}