-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
92 lines (92 loc) · 2.15 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
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
{
"name": "react-module-container",
"version": "1.0.1486",
"description": "",
"homepage": "",
"private": false,
"author": {
"name": "Shahar Talmi",
"email": "[email protected]",
"url": ""
},
"scripts": {
"start": "yoshi start --entry-point=./dist/test/mock/fake-server.js --with-tests",
"build": ":",
"precommit": "yoshi lint",
"pretest": "yoshi build",
"test": "yoshi test --mocha --protractor",
"posttest": "yoshi lint",
"release": "yoshi release"
},
"files": [
"dist"
],
"main": "dist/src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"yoshi": {
"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",
"demo-4": "./demo/demo-4.scss",
"demo-5": "./demo/demo-5.scss",
"demo-shared": "./demo/demo-shared.scss",
"umd": "./index.js"
},
"externals": {
"react": "React",
"react-dom": "ReactDOM"
},
"exports": "reactModuleContainer"
},
"devDependencies": {
"@testing-library/react": "^12.0.0",
"@wix/yoshi": "^4.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"chai": "^4.2.0",
"express": "^4.13.4",
"global-jsdom": "^8.1.0",
"jsdom": "^16.7.0",
"jsdom-global": "^3.0.2",
"protractor": "^7.0.0",
"react-redux": "^5.1.2",
"react-router": "^3.2.6",
"redux": "^4.0.5",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"yoshi-angular-dependencies": "^4.167.0",
"yoshi-style-dependencies": "^4.228.0"
},
"babel": {
"presets": [
"yoshi"
],
"plugins": [
[
"babel-plugin-transform-builtin-extend",
{
"globals": [
"Error",
"Array"
]
}
]
]
},
"eslintConfig": {
"extends": "yoshi",
"rules": {
"prettier/prettier": "off"
}
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}