-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
{
"name": "awsl-naive",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"@lylajs/web": "^1.12.0",
"@vueuse/core": "^10.9.0",
"lodash-es": "^4.17.21",
"vue": "^3.4.26",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@iconify-json/mdi": "^1.1.66",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.8",
"@types/web-bluetooth": "^0.0.20",
"@unocss/preset-uno": "^0.59.4",
"@vicons/antd": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"naive-ui": "^2.38.1",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"unocss": "^0.59.4",
"vfonts": "^0.0.3",
"vite": "^5.2.11",
"vue-tsc": "^2.0.16"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --parser=vue --write",
"eslint --fix"
],
"*.css": [
"prettier --write"
],
"*.md": [
"prettier --write --parser markdown --prose-wrap never",
"eslint --fix"
]
}
}