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{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"axios": "^1.8.4",
"vue-i18n": "^9.14.3",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@eslint/js": "^9.24.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/vue": "^6.4.2",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/babel-preset-jsx": "^1.4.0",
"@vue/test-utils": "^2.4.0-alpha.2",
"@vue/tsconfig": "^0.7.0",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"eslint": "^9.24.0",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"sass": "^1.86.2",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.29.0",
"vite": "^6.2.0",
"vue": "^3.5.13",
"vue-tsc": "^2.2.4"
}
}