This commit is contained in:
Oscar
2026-06-03 20:21:43 +03:00
commit a38e905b29
25 changed files with 19011 additions and 0 deletions

28
frontend/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "tmc-frontend",
"type": "module",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"preview": "nuxt preview",
"lint": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"gen:api": "npx swagger-typescript-api generate --path http://localhost:1337/docs/json --output ./app/services --name api.ts --axios --unwrap-response-data"
},
"dependencies": {
"@nuxt/ui": "^4.7.1",
"axios": "^1.17.0",
"nuxt": "^4.4.2",
"vue-draggable-next": "^2.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"eslint": "^10.4.1",
"eslint-plugin-format": "^2.0.1",
"sass": "^1.100.0",
"swagger-typescript-api": "^13.12.0",
"typescript": "^6.0.3",
"vue-tsc": "^3.3.3"
}
}