-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Изменения <!-- Опишите здесь на языке, понятном каждому, изменения, сделанные в исходном коде по пунктам. --> ## Детали реализации <!-- Здесь можно описать технические детали по пунктам. --> ## Check-List <!-- После сохранения у следующих полей появятся галочки, которые нужно проставить мышкой --> - [ ] Вы проверили свой код перед отправкой запроса? - [ ] Вы написали тесты к реализованным функциям? - [ ] Вы не забыли применить форматирование `black` и `isort` для _Back-End_ или `Prettier` для _Front-End_? Co-authored-by: Artem Netsvetaev <physphile@vk.com>
- Loading branch information
1 parent
487dc2e
commit 75af80b
Showing
10 changed files
with
84 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
{ | ||
"name": "tvoi-ff", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"build:development": "vite build --mode development", | ||
"build:testing": "vite build --mode testing", | ||
"preview": "vite preview", | ||
"test": "vitest", | ||
"lint": "eslint --ext .ts,.vue .", | ||
"lint:fix": "eslint --ext .ts,.vue . --fix", | ||
"prettier": "prettier . --check", | ||
"prettier:write": "prettier . --write", | ||
"stylelint": "stylelint \"**/*.{vue,css}\"", | ||
"stylelint:fix": "stylelint \"**/*.{vue,css}\" --fix", | ||
"format": "bun run lint:fix && bun run prettier:write && bun run stylelint:fix", | ||
"check": "bun run lint && bun run prettier && bun run stylelint" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.6.7", | ||
"markdown-it": "^14.0.0", | ||
"pinia": "^2.1.7", | ||
"query-string": "^9.0.0", | ||
"ua-parser-js": "^1.0.37", | ||
"vue": "^3.4.21", | ||
"vue-material-design-icons": "^5.3.0", | ||
"vue-router": "^4.3.0", | ||
"vuetify": "^3.5.7", | ||
"workbox-window": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/markdown-it": "^13.0.7", | ||
"@types/node": "^20.11.24", | ||
"@types/ua-parser-js": "^0.7.39", | ||
"@typescript-eslint/eslint-plugin": "^7.1.0", | ||
"@typescript-eslint/parser": "^7.1.0", | ||
"@vitejs/plugin-basic-ssl": "^1.1.0", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vue/eslint-config-typescript": "^12.0.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-vue": "^9.22.0", | ||
"postcss": "^8.4.35", | ||
"postcss-html": "^1.6.0", | ||
"postcss-preset-env": "^9.4.0", | ||
"prettier": "^3.2.5", | ||
"stylelint": "^16.2.1", | ||
"stylelint-config-recommended-vue": "^1.5.0", | ||
"stylelint-config-standard": "^36.0.0", | ||
"typescript": "5.3.3", | ||
"vite": "^5.1.4", | ||
"vite-plugin-eslint": "^1.8.1", | ||
"vite-plugin-pwa": "^0.19.2", | ||
"vite-plugin-stylelint": "^5.3.1", | ||
"vite-plugin-vuetify": "^2.0.2", | ||
"vitest": "^1.3.1", | ||
"vue-tsc": "^2.0.2" | ||
} | ||
"name": "tvoi-ff", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"build:development": "vite build --mode development", | ||
"build:testing": "vite build --mode testing", | ||
"preview": "vite preview --port 443", | ||
"test": "vitest", | ||
"lint": "eslint --ext .ts,.vue .", | ||
"lint:fix": "eslint --ext .ts,.vue . --fix", | ||
"prettier": "prettier . --check", | ||
"prettier:write": "prettier . --write", | ||
"stylelint": "stylelint \"**/*.{vue,css}\"", | ||
"stylelint:fix": "stylelint \"**/*.{vue,css}\" --fix", | ||
"format": "bun run lint:fix && bun run prettier:write && bun run stylelint:fix", | ||
"check": "vue-tsc && bun run lint && bun run prettier && bun run stylelint" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.6.7", | ||
"markdown-it": "^14.0.0", | ||
"pinia": "^2.1.7", | ||
"query-string": "^9.0.0", | ||
"ua-parser-js": "^1.0.37", | ||
"vue": "^3.4.21", | ||
"vue-material-design-icons": "^5.3.0", | ||
"vue-router": "^4.3.0", | ||
"vuetify": "^3.5.7", | ||
"workbox-window": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/markdown-it": "^13.0.7", | ||
"@types/node": "^20.11.24", | ||
"@types/ua-parser-js": "^0.7.39", | ||
"@typescript-eslint/eslint-plugin": "^7.1.0", | ||
"@typescript-eslint/parser": "^7.1.0", | ||
"@vitejs/plugin-basic-ssl": "^1.1.0", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vue/eslint-config-typescript": "^12.0.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-vue": "^9.22.0", | ||
"postcss": "^8.4.35", | ||
"postcss-html": "^1.6.0", | ||
"postcss-preset-env": "^9.4.0", | ||
"prettier": "^3.2.5", | ||
"stylelint": "^16.2.1", | ||
"stylelint-config-recommended-vue": "^1.5.0", | ||
"stylelint-config-standard": "^36.0.0", | ||
"typescript": "5.3.3", | ||
"vite": "^5.1.4", | ||
"vite-plugin-eslint": "^1.8.1", | ||
"vite-plugin-pwa": "^0.19.2", | ||
"vite-plugin-stylelint": "^5.3.1", | ||
"vite-plugin-vuetify": "^2.0.2", | ||
"vitest": "^1.3.1", | ||
"vue-tsc": "^2.0.2" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters