-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "micro-frontends",
"private": true,
"version": "1.0.0",
"description": "example repo for micro frontends with react and dependency inversion as integration pattern",
"main": "index.js",
"repository": "https://github.com/denise-schaefer/micro-frontends.git",
"author": "Denise Schäfer <denise.schaefer@dm.de>",
"license": "MIT",
"workspaces": [
"app/search",
"app/search-api",
"app/product",
"app/content",
"app/composer",
"slides/screenshooter"
],
"scripts": {
"dev": "yarn build",
"build": "yarn --cwd app/search-api build && yarn --cwd app/search build && yarn --cwd app/product build && yarn --cwd app/content build && yarn --cwd app/composer build",
"lint": "eslint --fix ./",
"format": "prettier --write \"**/*.js\" \"**/*.jsx\"",
"pdf": "node ./slides/screenshooter"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"prettier": "3.8.1"
}
}