-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 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
75
76
77
78
79
{
"name": "naotimes-ui",
"version": "3.0.0-alpha.0",
"private": true,
"type": "module",
"license": "BSD-3-Clause",
"readme": "README.md",
"scripts": {
"build": "cross-env NODE_ENV=production NITRO_PRESET=bun nuxt build",
"dev": "nuxt dev --port 5561 --host 127.0.0.1",
"generate": "nuxt generate",
"preview": "nuxt preview",
"production": "bun build && cross-env PORT=5561 bun run --bun .output/server/index.mjs",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@nuxt/fonts": "0.11.3",
"@nuxt/icon": "1.12.0",
"@nuxt/image": "1.10.0",
"@nuxtjs/color-mode": "3.5.2",
"@nuxtjs/i18n": "9.1.2",
"@pinia/nuxt": "0.11.0",
"@vueuse/core": "13.1.0",
"@vueuse/nuxt": "13.1.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"nuxt": "3.17.2",
"pinia": "3.0.2",
"pinia-plugin-persistedstate": "4.2.0",
"radix-vue": "1.9.17",
"tailwind-merge": "3.2.0",
"tailwindcss-animate": "1.0.7",
"vue": "3.5.13"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.26.0",
"@iconify-json/heroicons": "1.2.2",
"@iconify-json/lucide": "1.2.41",
"@iconify-json/radix-icons": "1.2.2",
"@iconify-json/simple-icons": "1.2.33",
"@nuxtjs/apollo": "5.0.0-alpha.14",
"@nuxtjs/tailwindcss": "6.14.0",
"@stylistic/eslint-plugin": "4.2.0",
"@types/eslint": "9.6.1",
"@types/eslint__eslintrc": "3.3.0",
"@types/eslint__js": "9.14.0",
"@types/postcss-js": "4.0.4",
"cross-env": "7.0.3",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-unicorn": "59.0.1",
"eslint-plugin-vue": "10.1.0",
"graphql-tag": "2.12.6",
"postcss-js": "4.0.1",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "3",
"typescript": "5.7.3",
"typescript-eslint": "8.32.0",
"vue-eslint-parser": "^10.1.3"
},
"packageManager": "bun@1.2.0",
"engines": {
"npm": "please-use-bun",
"pnpm": "please-use-bun",
"node": "please-use-bun",
"yarn": "please-use-bun",
"bun": ">= 1.2.0"
},
"trustedDependencies": [
"@parcel/watcher"
]
}