-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@arco-design/web-vue": "^2.54.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^6.11.0",
"dayjs": "^1.11.10",
"eslint": "^8.56.0",
"nuxt": "^3.9.3",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"eslintConfig": {
"extends": [
"@nuxtjs/eslint-config-typescript"
],
"rules": {
"vue/no-multiple-template-root": "off",
"vue/singleline-html-element-content-newline": "off",
"space-before-function-paren": "off"
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}