-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
30 lines (30 loc) · 867 Bytes
/
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
{
"name": "root-container",
"version": "0.0.0",
"description": "module-federation",
"author": "Vitor Alencar <[email protected]> (https://github.com/vitormalencar)",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"shared-routing/*"
]
},
"devDependencies": {
"concurrently": "5.3.0",
"cross-spawn": "7.0.3",
"husky": "4.3.8",
"jest": "26.6.3",
"lerna": "3.22.1",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --ignore-scripts",
"build": "lerna run --parallel build",
"submodules": "git pull --recurse-submodules",
"prettier": "prettier --write \"**/*.{js,json,md,ts,tsx}\"",
"prettier:check": "prettier --list-different \"**/*.{js,json,md,ts,tsx}\"",
"test": "jest test/index.spec.js --maxWorkers=2"
}
}