forked from FRC2834/blackhawks-scouting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "blackhawks-scouting",
"version": "2023.1 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",
"checkUpdates": "ncu -u"
},
"dependencies": {
"@types/lodash": "^4.14.191",
"@vueuse/core": "^9.13.0",
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue-macros/reactivity-transform": "^0.2.4",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"npm-check-updates": "^16.7.9",
"postcss": "^8.4.21",
"postcss-nested": "^6.0.1",
"typescript": "~4.9.5",
"vite": "^4.1.4",
"vite-plugin-live-reload": "3.0.1",
"vite-plugin-pwa": "^0.14.4"
},
"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
}
]
}
}
}