-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 KB
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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "NODE_OPTIONS=--max_old_space_size=12000 prettier --cache --write src/",
"lint": "npm run format; npm run type-check; npm run eslint;",
"docker-dev-entry": "npm i; npm run dev -- --host 0.0.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"axios": "^1.8.2",
"pinia": "^3.0.0",
"vue": "^3.5.4",
"vue-router": "^4.4.4",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^24.0.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^10.3.0",
"jiti": "^2.4.2",
"npm-run-all2": "^8.0.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.6.2",
"vite": "^7.0.4",
"vue-tsc": "^3.0.1"
}
}