-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "runsheets",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint src --ext .vue,.js,.ts && prettier --check .",
"lint:fix": "eslint src --ext .vue,.js,.ts --fix && prettier --write .",
"format": "prettier --write ."
},
"dependencies": {
"@fontsource-variable/dm-sans": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jost": "^5.2.8",
"@fontsource-variable/lexend": "^5.2.11",
"@fontsource-variable/manrope": "^5.2.8",
"@fontsource-variable/outfit": "^5.2.8",
"@fontsource-variable/plus-jakarta-sans": "^5.2.8",
"@fontsource-variable/space-grotesk": "^5.2.10",
"@fontsource-variable/urbanist": "^5.2.7",
"@phosphor-icons/vue": "^2.2.1",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"floating-vue": "^5.2.2",
"html2canvas-pro": "^2.0.2",
"lodash": "^4.17.23",
"lucide-vue-next": "^0.575.0",
"reka-ui": "^2.8.2",
"tailwind-merge": "^3.5.0",
"vue": "^3.5.25"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"@tailwindcss/vite": "^4.2.1",
"@types/lodash": "^4.17.24",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/tsconfig": "^0.8.1",
"eslint": "^10.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^10.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.50.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^8.0.0-beta.13",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.1.5"
},
"overrides": {
"vite": "^8.0.0-beta.13"
},
"lint-staged": {
"*.{vue,js,ts}": [
"eslint --fix"
],
"*.{vue,js,ts,json,html}": [
"prettier --write"
]
},
"packageManager": "yarn@4.12.0"
}