-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "home2",
"type": "module",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.4",
"eslint": "^8.57.0",
"pinia": "^2.1.7",
"ress": "^5.0.2",
"vue-router": "^4.3.3"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"eslint --fix"
]
},
"devDependencies": {
"iconify-icon": "^2.1.0",
"@iconify-icons/bx": "^1.2.6",
"@iconify-icons/dashicons": "^1.2.4",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@mdx-js/vue": "^3.0.1",
"@rushstack/eslint-patch": "^1.10.3",
"@types/mdx": "^2.0.13",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-purge-icons": "^0.2.2",
"vue": "^3.4.29",
"vue-tsc": "^2.0.21"
}
}