-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "halolight-nuxt",
"version": "1.0.0",
"description": "基于 Nuxt 3 + Vue 3 的现代化中文后台管理系统",
"type": "module",
"private": true,
"license": "MIT",
"homepage": "https://halolight-nuxt.h7ml.cn",
"repository": {
"type": "git",
"url": "git+https://github.com/halolight/halolight-nuxt.git"
},
"bugs": {
"url": "https://github.com/halolight/halolight-nuxt/issues"
},
"keywords": [
"nuxt",
"vue",
"admin",
"dashboard",
"typescript",
"tailwindcss",
"pinia"
],
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.12.0",
"@pinia/nuxt": "^0.5.5",
"@vueuse/nuxt": "^10.9.0",
"mockjs": "^1.1.0",
"nuxt": "3.10.3",
"pinia-plugin-persistedstate": "^4.1.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@nuxt/eslint": "^0.7.4",
"@nuxt/eslint-config": "^1.11.0",
"@nuxt/test-utils": "^3.14.4",
"@types/mockjs": "^1.0.10",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.6.2",
"happy-dom": "^15.11.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.48.0",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"@vue-macros/common": "1.10.0",
"postcss": "8.4.47"
}
}
}