-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 903 Bytes
/
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
{
"name": "phonetic-symbol",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@unocss/reset": "^0.57.2",
"@vueuse/core": "^10.5.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@iconify-json/carbon": "^1.1.21",
"@unocss/eslint-config": "^0.57.2",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.53.0",
"lint-staged": "^15.0.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.0.2",
"unocss": "^0.57.2",
"vite": "^4.4.5",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}