-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.46 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.46 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
97
98
99
100
101
102
103
104
{
"name": "fabric-micro-front-end-meetup-demo-app",
"description": "This is an example of examples on how to use MicroFrontEnd in a variety of contexts.",
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server",
"build": "NODE_ENV=production ./node_modules/.bin/rimraf ./dist && NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js",
"test": "./node_modules/.bin/jest",
"test-watch": "./node_modules/.bin/jest --watch"
},
"author": "Abhinav Sharma",
"license": "Apache-2.0",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cpx": "^1.5.0",
"css-loader": "^3.4.2",
"html-loader": "^0.5.5",
"rimraf": "^2.6.2",
"style-loader": "^1.1.3",
"ts-loader": "^3.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.6",
"webpack-dev-server": "^3.10.3",
"@angular/cli": "^8.3.20",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@cycle/dom": "^20.4.0",
"@cycle/http": "^14.9.0",
"@cycle/run": "^4.4.0",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@pcmnac/single-spa-cycle": "^1.0.1",
"@types/jest": "^24.0.23",
"angular": "^1.6.7",
"angular-ui-router": "1.0.0-beta.2",
"aphrodite": "^1.2.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cypress": "^4.1.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"firebase": "^7.9.0",
"history": "^4.10.1",
"html-webpack-plugin": "^3.2.0",
"hybrids": "^4.1.1",
"preact": "^8.2.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router": "^3",
"react-router-redux": "^4.0.8",
"react-star-rating-component": "^1.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reflect-metadata": "^0.1.10",
"rx": "^4.1.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.0.0-rc.0",
"single-spa": "^4.4.3",
"single-spa-angular": "^2.0.0",
"single-spa-angularjs": "^3.0.1",
"single-spa-preact": "^1.0.1",
"single-spa-react": "^2.11.0",
"single-spa-vue": "^1.8.0",
"snabbdom-jsx": "^0.4.2",
"todomvc-app-css": "^2.1.0",
"todomvc-common": "^1.0.4",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-material": "^1.0.0-beta-11",
"vue-template-compiler": "^2.6.11",
"web-react-components": "^1.4.2",
"webpack-cli": "^3.3.11",
"xstream": "^11.7.0",
"zone.js": "^0.9.1"
},
"devDependencies": {
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"react-test-renderer": "^16.13.0"
}
}