-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "mod-shell",
"version": "0.4.0",
"type": "module",
"private": true,
"scripts": {
"dev": "run-p vite:dev",
"vite:dev": "vite --port 4173",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"test": "vitest",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepare": "husky"
},
"dependencies": {
"@module-federation/bridge-vue3": "^0.21.2",
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@module-federation/vite": "^1.8.1",
"@types/node": "^24.5.2",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.36.0",
"eslint-plugin-vue": "^10.5.0",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vitest": "^3.2.4",
"vue-tsc": "^3.1.0"
}
}