-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.52 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
64
65
66
67
68
69
70
71
{
"dependencies": {
"@quasar/extras": "^1.12.2",
"pinia": "^2.0.0-rc.10",
"pinia-plugin-persist": "^0.0.92",
"quasar": "^2.3.4",
"uuid": "^8.3.2",
"vue": "^3.2.23",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.0.3",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@vitejs/plugin-vue": "^1.10.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^8.2.0",
"prettier": "^2.5.1",
"sass": "^1.32.0",
"vite": "^2.7.0",
"vite-plugin-pwa": "^0.11.12"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-recommended",
"prettier"
],
"overrides": [
{
"files": [
"*.js",
"*.ts",
"*.vue"
]
}
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"extraFileExtensions": [
".vue"
],
"parser": "@typescript-eslint/parser"
},
"plugins": [
"@typescript-eslint"
],
"root": true
},
"name": "lists",
"prettier": {
"printWidth": 120,
"semi": false
},
"scripts": {
"build": "vite build",
"dev": "vite",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"preview": "vite preview",
"test:e2e": "",
"test:unit": ""
},
"version": "0.0.0"
}