-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "vue3-vite-microfrontends",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"restart": "yarn stop & yarn build & yarn serve",
"stop": "kill-port --port 5000,5001,5002",
"clean": "nx run-many --target=clean & rimraf node_modules",
"dev-host": "nx develop host",
"build-dev-wrapper": "nx run-many --target=build -p dev-wrapper",
"build": "nx run-many --target=build",
"build-remotes": "nx run-many --target=build -p remote1 -p remote2",
"serve-remotes": "nx run-many --target=serve -p remote1 -p remote2",
"preview-remotes": "nx run-many --target=build -p remote1 -p remote2 && nx run-many --target=serve -p remote1 -p remote2"
},
"devDependencies": {
"@originjs/vite-plugin-federation": "^1.2.3",
"@stylistic/eslint-plugin-js": "1.6.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vue/eslint-config-airbnb": "8.0.0",
"dev-wrapper": "*",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-vue": "9.21.1",
"kill-port": "^2.0.1",
"lerna": "^7.1.4",
"nx": "^16.6.0",
"rimraf": "^5.0.1",
"typescript": "5.3.3",
"vue-eslint-parser": "9.4.2"
},
"engines": {
"node": ">=18",
"yarn": "1.22.21"
},
"packageManager": "yarn@1.22.21",
"resolutions": {
"strip-ansi": "^6.0.1"
}
}