-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "eslint-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vite --port 8079",
"check:update": "yarn upgrade-interactive --latest",
"check:lint": "eslint . --ext .ts,.js,.vue --ignore-path .gitignore --max-warnings=0",
"check:prettier": "prettier --check --ignore-path .gitignore \"src/**/*.{js,ts,vue,scss,css,json}\"",
"check:ts": "vue-tsc --noEmit --skipLibCheck --pretty",
"fix:prettier": "yarn run check:prettier --write",
"fix:lint": "yarn run check:lint --fix"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@fortawesome/fontawesome-common-types": "6.4.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-regular-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/vue-fontawesome": "3.0.3",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@microsoft/applicationinsights-web": "^3.0.2",
"@popperjs/core": "^2.11.8",
"@vueuse/core": "^10.3.0",
"axios": "1.4.0",
"chart.js": "^3.9.1",
"chartjs-adapter-dayjs-3": "^1.2.3",
"core-js": "^3.32.0",
"css-pro-layout": "^1.1.0",
"dayjs": "1.11.9",
"dompurify": "^3.0.5",
"element-plus": "2.3.5",
"lodash-es": "4.17.21",
"marked": "^5.1.2",
"modern-normalize": "^2.0.0",
"pinia": "^2.1.6",
"tslib": "^2.6.1",
"util": "^0.12.5",
"vue": "^3.3.4",
"vue-chart-3": "^3.1.8",
"vue-focus-lock": "2.0.5",
"vue-global-events": "3.0.0",
"vue-i18n": "9.2.2",
"vue-router": "4.2.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@axe-core/playwright": "^4.7.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@playwright/test": "^1.36.2",
"@total-typescript/ts-reset": "^0.4.2",
"@types/dompurify": "^3.0.2",
"@types/lodash-es": "^4.17.8",
"@types/marked": "^5.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/typescript-estree": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.34.1",
"@vue/compiler-dom": "^3.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/server-renderer": "^3.3.4",
"@vue/test-utils": "^2.4.1",
"change-case": "^4.1.2",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"cross-env": "7.0.3",
"csstype": "^3.1.2",
"eslint": "8.46.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "9.16.1",
"eslint-plugin-vuejs-accessibility": "2.1.0",
"jsdom": "^22.1.0",
"json-server": "^0.17.3",
"lint-staged": "^13.2.3",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"sass": "^1.64.2",
"ts-essentials": "^9.3.2",
"typescript": "5.1.6",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.8",
"vite-bundle-visualizer": "^0.10.0",
"vite-plugin-istanbul": "^5.0.0",
"vitest": "^0.34.1",
"vue-tsc": "^1.8.8",
"wait-on": "^7.0.1"
},
"engines": {
"node": ">=18.16.0",
"yarn": ">=1.22.5"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix --max-warnings=0"
],
"*.{js,jsx,vue,ts,tsx,json}": [
"prettier --write"
]
},
"nyc": {
"report-dir": "./coverage-cypress",
"temp-directory": "./.nyc_output",
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".tsx",
".ts",
".js",
".vue"
],
"include": [
"src/**/*.tsx",
"src/**/*.ts",
"src/**/*.js",
"src/**/*.vue",
"tests/e2e/specs/**/*.js"
],
"exclude": [
"cypress/",
"assets/",
"test/"
],
"all": true
}
}