-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
{
"name": "tvoi-ff",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build:development": "vite build --mode development",
"build:testing": "vite build --mode testing",
"preview": "vite preview --port 443",
"test": "vitest",
"lint": "eslint \"**/*.{vue,ts}\"",
"lint:fix": "eslint \"**/*.{vue,ts}\" --fix",
"prettier": "prettier . --check",
"prettier:write": "prettier . --write",
"stylelint": "stylelint \"**/*.{vue,css}\"",
"stylelint:fix": "stylelint \"**/*.{vue,css}\" --fix",
"format": "pnpm run lint:fix && pnpm run prettier:write && pnpm run stylelint:fix",
"check": "vue-tsc && pnpm run lint && pnpm run prettier && pnpm run stylelint"
},
"dependencies": {
"@profcomff/api-uilib": "^2024.11.24",
"markdown-it": "^14.1.0",
"openapi-fetch": "^0.13.0",
"pinia": "^2.2.6",
"query-string": "^9.1.1",
"ua-parser-js": "^1.0.39",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@profcomff/api-uilib": "^2024.9.29",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.9.3",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"openapi-typescript": "^7.4.3",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "5.6.3",
"vite": "^5.4.11",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.21.0",
"vite-plugin-stylelint": "^5.3.1",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^2.1.5",
"vue-tsc": "^2.1.10",
"vuetify": "^3.7.4"
},
"overrides": {
"workbox-build": "^7.3.0"
}
}