forked from douglasdeoliveira/react-micro-frontends
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"private": true,
"name": "react-micro-frontends",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"packages/app/*",
"packages/modules/*",
"packages/shared/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build --stream",
"start": "lerna run start --stream",
"start:app": "yarn workspace @project/app start",
"start:foo": "yarn workspace @project/foo start",
"start:bar": "yarn workspace @project/bar start"
},
"dependencies": {
"cra-template-typescript": "1.0.3",
"customize-cra": "^1.0.0",
"history": "^5.0.0",
"http-proxy-middleware": "^1.0.5",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.13",
"prettier": "^2.1.0",
"typescript": "^3.9.6",
"webpack": "4.42.0"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
}
}