-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 992 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
31
{
"name": "micro-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'packages/**/*.js'",
"lint-fix": "eslint --fix 'packages/**/*.js'",
"format": "prettier --write 'packages/**/*.js'",
"build:cards": "yarn workspace cards build",
"build:host": "yarn workspace host build",
"build:transactions": "yarn workspace transactions build",
"build:shared": "yarn workspace shared build"
},
"author": "Sergey Uchaev <[email protected]>",
"license": "ISC",
"repository": "https://github.com/u4aew/module-federation-playground.git",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.1"
}
}