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
54
55
56
57
58
59
60
61
62
63
| {
| "name": "vite-boot",
| "version": "0.0.1",
| "private": true,
| "packageManager": "pnpm@7.11.0",
| "description": "Vite starter template with TailwindCSS",
| "keywords": [
| "viteBoot",
| "vite-boot",
| "vite",
| "tailwindcss",
| "fast",
| "boot"
| ],
| "main": "src/main.ts",
| "scripts": {
| "dev": "vite",
| "build": "vite build",
| "typecheck": "vue-tsc --noEmit",
| "preview": "vite preview",
| "lint": "eslint .",
| "lint:fix": "eslint . --fix",
| "prepare": "husky install"
| },
| "dependencies": {
| "@vueuse/core": "^9.2.0",
| "daisyui": "^2.31.0",
| "nprogress": "^0.2.0",
| "pinia": "^2.0.22",
| "sass": "^1.55.0",
| "theme-change": "^2.2.0",
| "vue": "^3.2.39",
| "vue-router": "^4.1.5"
| },
| "devDependencies": {
| "@commitlint/cli": "^17.1.2",
| "@commitlint/config-conventional": "^17.1.0",
| "@kirklin/eslint-config": "^0.1.3",
| "@tailwindcss/aspect-ratio": "^0.4.2",
| "@tailwindcss/forms": "^0.5.3",
| "@tailwindcss/line-clamp": "^0.4.2",
| "@tailwindcss/typography": "^0.5.7",
| "@types/node": "^18.7.18",
| "@types/nprogress": "^0.2.0",
| "@vitejs/plugin-vue": "^3.1.0",
| "autoprefixer": "^10.4.12",
| "eslint": "^8.23.1",
| "eslint-plugin-tailwindcss": "^3.6.2",
| "husky": "^8.0.1",
| "lint-staged": "^13.0.3",
| "pnpm": "^7.12.2",
| "postcss": "^8.4.16",
| "tailwindcss": "^3.1.8",
| "typescript": "^4.8.3",
| "unplugin-auto-import": "^0.11.2",
| "unplugin-vue-components": "^0.22.7",
| "vite": "^3.1.3",
| "vue-tsc": "^0.40.13"
| },
| "lint-staged": {
| "*.{ts,tsx,vue,js,jsx}": "eslint --cache --fix"
| }
| }
|
|