-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 997 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 997 Bytes
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "pnpm@10.6.4",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@iconify-json/flag": "^1.2.10",
"@nuxt/icon": "^2.1.0",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/i18n": "^10.2.1",
"@nuxtjs/tailwindcss": "^6.14.0",
"@vueuse/nuxt": "14.1.0",
"arco-design-nuxt-module": "^0.2.1",
"echarts": "^6.0.0",
"nuxt": "^4.2.1",
"nuxt-echarts": "^1.0.1",
"prettier": "^3.7.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"vue": "^3.5.25"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
],
"overrides": [
{
"files": "shared/utils/gvlks.ts",
"options": {
"printWidth": 200
}
}
]
}
}