-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.86 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@hitokoto/frontend-template",
"version": "1.1.0",
"private": true,
"scripts": {
"build": "vite build",
"build:ssg": "vite-ssg build",
"dev": "vite --port 2333 --open --host",
"postinstall": "husky install",
"lint": "pnpm lint:eslint && pnpm lint:ts && pnpm lint:styles",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx,.vue .",
"lint:styles": "stylelint --allow-empty-input \"**/*.{css,scss,vue}\"",
"lint:ts": "tsc --noEmit",
"pkg:fmt": "prettier --write package.json",
"pkg:sort": "pnpm dlx sort-package-json",
"pkg:up": "pnpm dlx npm-check-updates -i",
"prepare": "husky install",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest"
},
"dependencies": {
"pinia": "2.1.7",
"vue": "3.4.15",
"vue-router": "4.2.5"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@iconify/json": "^2.2.131",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@julr/vite-plugin-validate-env": "^0.2.4",
"@rushstack/eslint-patch": "1.10.5",
"@types/markdown-it-link-attributes": "3.0.4",
"@types/nprogress": "0.2.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@unhead/vue": "^1.7.4",
"@unocss/preset-attributify": "^0.58.0",
"@unocss/preset-icons": "^0.58.0",
"@unocss/preset-uno": "^0.58.0",
"@unocss/reset": "^0.58.0",
"@unocss/transformer-compile-class": "^0.58.0",
"@unocss/transformer-directives": "^0.58.0",
"@unocss/transformer-variant-group": "^0.58.0",
"@vitejs/plugin-vue": "4.6.2",
"@vue-macros/volar": "^0.18.0",
"@vue/compiler-sfc": "3.4.15",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/server-renderer": "3.4.15",
"@vueuse/core": "10.7.2",
"autoprefixer": "10.4.19",
"axios": "1.6.8",
"critters": "0.0.22",
"cross-env": "7.0.3",
"cypress": "13.17.0",
"dayjs": "1.11.10",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-vue": "9.32.0",
"husky": "8.0.3",
"javascript-obfuscator": "4.1.0",
"lint-staged": "15.3.0",
"lodash": "4.17.21",
"markdown-it-link-attributes": "4.0.1",
"markdown-it-prism": "2.3.0",
"nprogress": "0.2.0",
"postcss": "8.4.38",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "3.4.2",
"prism-theme-vars": "0.2.4",
"rollup": "4.14.0",
"rollup-plugin-obfuscator": "1.1.0",
"sass": "1.74.1",
"stylelint": "15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "34.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "^5.2.1",
"typescript": "5.7.3",
"unocss": "^0.58.0",
"unplugin-auto-import": "0.17.5",
"unplugin-icons": "^0.18.0",
"unplugin-vue-components": "0.26.0",
"unplugin-vue-macros": "^2.6.1",
"unplugin-vue-markdown": "^0.25.0",
"unplugin-vue-router": "0.7.0",
"vite": "5.0.12",
"vite-plugin-checker": "0.6.4",
"vite-plugin-inspect": "0.8.3",
"vite-plugin-md": "0.21.5",
"vite-plugin-pwa": "0.17.5",
"vite-plugin-vue-devtools": "1.0.0-rc.8",
"vite-plugin-vue-layouts": "0.11.0",
"vite-ssg": "0.23.6",
"vitest": "0.34.6",
"vue-demi": "0.14.7",
"vue-eslint-parser": "9.4.3",
"vue-i18n": "9.9.1",
"vue-tsc": "1.8.27",
"workbox-window": "7.0.0",
"zod": "^3.22.4"
}
}