-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"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 <[email protected]>",
"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.25.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.3.3"
}
}