-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "ui-finder",
"version": "1.0.0",
"description": "Front-End part for UI Finder app",
"author": "alexovn",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev:prod": "nuxt dev --dotenv .env.prod.local",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nuxt/fonts": "0.11.4",
"@nuxt/ui": "4.1.0",
"@pinia/nuxt": "0.11.2",
"@tanstack/vue-virtual": "^3.13.12",
"@vueuse/core": "^13.9.0",
"lodash-es": "^4.17.21",
"nuxt": "^4.1.3",
"pinia": "^3.0.3",
"query-string": "^9.3.1",
"tailwindcss": "^4.1.16",
"ts-node": "^10.9.2",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@iconify-json/bxs": "^1.2.2",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lineicons": "^1.2.6",
"@iconify-json/lucide": "^1.2.72",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/octicon": "^1.2.16",
"@iconify-json/tabler": "^1.2.23",
"@iconify-json/uil": "^1.2.3",
"@nuxt/eslint": "1.10.0",
"@types/lodash-es": "^4.17.12",
"eslint": "^9.39.0",
"eslint-plugin-format": "^1.0.2",
"typescript": "^5.9.3",
"vue-tsc": "3.1.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"esbuild",
"unrs-resolver",
"vue-demi"
]
}
}