-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "server-status-theme-light",
"version": "1.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "vue-tsc && vite build",
"dev": "vite --host",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue src",
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^10.5.0",
"echarts": "^5.4.3",
"vue": "^3.3.4",
"vue-echarts": "^6.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@types/node": "^18.18.4",
"@vitejs/plugin-vue": "^4.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.11",
"vue-tsc": "^1.8.18"
},
"eslintConfig": {
"extends": "@antfu",
"rules": {
"vue/block-order": [
"error",
{
"order": [
"template",
"script",
"style"
]
}
]
}
}
}