-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.48 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.48 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --config config/vite.config.ts --host",
"build": "vue-tsc --project config/tsconfig.json && vite build --config config/vite.config.ts",
"start": "vite preview --config config/vite.config.ts",
"preview": "vite preview --config config/vite.config.ts",
"lint": "eslint . --config config/eslint.config.ts --ext .vue,.js,.ts --fix",
"lint:check": "eslint . --config config/eslint.config.ts --ext .vue,.js,.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:fix": "eslint . --config config/eslint.config.ts --ext .vue,.js,.ts --fix && prettier --write .",
"code-style": "npm run lint:fix && npm run format"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"daisyui": "^5.1.26",
"vue": "^3.5.21"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "10.4.17",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.0",
"postcss": "8.4.35",
"prettier": "^3.6.2",
"tailwindcss": "4.1.13",
"typescript": "~5.8.3",
"vite": "^7.1.7",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.0.7"
}
}