-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
executable file
·74 lines (74 loc) · 1.89 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
72
73
74
{
"name": "blackhawks-scouting",
"version": "2024.2 Prerelease",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src",
"installModules": "npm install",
"generateSchema": "json2ts src/common/config.schema.json src/config.d.ts"
},
"dependencies": {
"@types/lodash": "^4.14.202",
"@vueuse/core": "^10.9.0",
"ajv": "^8.12.0",
"pinia": "^2.1.7",
"qrcode.vue": "^3.4.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-macros/reactivity-transform": "^0.4.3",
"@vue/eslint-config-typescript": "^12.0.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"json-schema-to-typescript": "^13.1.2",
"postcss": "^8.4.35",
"postcss-preset-env": "^9.5.0",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-live-reload": "^3.0.3",
"vite-plugin-pwa": "^0.19.2"
},
"eslintConfig": {
"root": true,
"extends": [
"@vue/typescript/recommended",
"eslint:recommended",
"plugin:vue/vue3-essential"
],
"globals": {
"$$": "readonly",
"$": "readonly",
"$computed": "readonly",
"$customRef": "readonly",
"$ref": "readonly",
"$shallowRef": "readonly",
"$toRef": "readonly",
"APP_VERSION": "readonly"
},
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-console": "warn",
"no-debugger": "warn",
"quotes": [
"warn",
"double",
{
"avoidEscape": true
}
]
}
}
}