-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "microfrontend",
"version": "1.0.0",
"description": "Microfrontend Host",
"repository": "https://github.com/MicrofrontendGenerator/microfrontend.git",
"author": "Retzd",
"license": "MIT",
"scripts": {
"format": "prettier --write",
"start": "PORT=3001 react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test"
},
"dependencies": {
"history": "^4.7.2",
"react": "^16.8.6",
"react-app-polyfill": "^0.2.2",
"react-app-rewire-micro-frontends": "^0.0.1",
"react-dom": "^16.8.6",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.1.8",
"styled-components": "^4.3.0"
},
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest-enzyme": "^6.0.2",
"jest-fetch-mock": "^1.6.5",
"prettier": "^1.11.1",
"react-app-rewired": "^2.1.1"
},
"config-overrides-path": "node_modules/react-app-rewire-micro-frontends",
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}