-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "teahou.se",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vite preview",
"build": "vite build",
"dev": "vite"
},
"dependencies": {
"vue": "^3.2.31",
"vuetify": "^3.0.0-beta.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@mdi/js": "^6.6.96",
"@types/webfontloader": "^1.6.34",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-vue": "^2.3.1",
"aws-sdk": "^2.1125.0",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"glob": "^8.0.1",
"mime-types": "^2.1.35",
"rollup-plugin-visualizer": "^5.6.0",
"sass": "^1.50.0",
"simple-icons": "^6.19.0",
"typescript": "^4.6.3",
"unplugin-vue-components": "^0.19.2",
"vite": "^2.9.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"vue/setup-compiler-macros": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"vue/valid-template-root": "warn",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off",
"vue/html-closing-bracket-newline": "off",
"vue/html-indent": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multi-word-component-names": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}