-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "micro-frontends",
"author": "Nathaniel C. Hall",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/nathanielhall/micro-frontends.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "lerna run start --parallel",
"build": "lerna run build --concurrency=1",
"serve": "lerna run serve --concurrency=1",
"clean": "scripty"
},
"scripty": {
"path": "./scripts/workspace"
},
"keywords": [
"micro-frontend",
"react",
"single-spa",
"starter",
"monorepo",
"lerna"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"concurrently": "^5.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^41.0.0",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"wsrun": "^5.2.0"
}
}