This repository was archived by the owner on Oct 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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
75
{
"name": "cn-schedule",
"version": "3.1.1",
"description": "Cartoon Network schedule browser",
"author": "MKody <[email protected]>",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepare": "husky install"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@sentry/vue": "^7.59.3",
"@snyk/protect": "^1.1192.0",
"chart.js": "^4.3.0",
"luxon": "^3.3.0",
"pinia": "^2.1.4",
"store": "^2.0.12",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-linter": "^2.0.2",
"vue": "^3.3.4",
"vue-flatpickr-component": "^11.0.3",
"vue-router": "^4.2.4",
"vue3-tabs-component": "^1.3.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.15.1",
"git-revision-webpack-plugin": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.63.6",
"vite": "^4.4.4",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-sentry": "^1.3.0"
},
"eslintConfig": {
"extends": [
"plugin:vue/vue3-essential",
"@vue/standard"
],
"rules": {
"vue/html-indent": [
"error",
2
],
"vue/html-quotes": [
"error",
"double"
],
"vue/multi-word-component-names": "off"
}
},
"eslintIgnore": [
"*.min.js"
],
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 5.0.0"
},
"snyk": true
}