forked from miantiao-me/Sink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "sink",
"type": "module",
"version": "0.2.1",
"private": true,
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=20.11"
},
"scripts": {
"build": "NODE_OPTIONS=--max-old-space-size=8192 nuxt build",
"build:map": "node scripts/build-map.js",
"build:colo": "node scripts/build-colo.js",
"postinstall": "npm run build:map && nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"wrangler": "wrangler",
"dev": "nuxt dev",
"deploy": "npm run deploy:pages",
"deploy:pages": "wrangler pages deploy dist",
"deploy:worker": "wrangler deploy",
"preview": "wrangler dev --var $(cat .env | sed 's/=/:/g')",
"test": "vitest"
},
"dependencies": {
"@intlify/message-compiler": "^11.1.12",
"@number-flow/vue": "^0.4.8",
"@tanstack/vue-table": "^8.21.3",
"@unovis/ts": "^1.6.1",
"@unovis/vue": "^1.6.1",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^14.0.0",
"@vueuse/motion": "^3.0.3",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"embla-carousel-vue": "^8.6.0",
"fuse.js": "^7.1.0",
"globe.gl": "^2.45.0",
"intl-parse-accept-language": "^1.0.0",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.552.0",
"mysql-bricks": "^2.0.0",
"nanoid": "^5.1.6",
"pluralize": "^8.0.0",
"qr-code-styling": "^1.9.2",
"reka-ui": "^2.6.0",
"tw-animate-css": "^1.4.0",
"ua-parser-js": "^2.0.6",
"vaul-vue": "^0.4.1",
"vee-validate": "^4.15.1",
"virtua": "^0.46.5",
"vue-sonner": "^2.0.9",
"vue3-simple-icons": "^15.6.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@anatine/zod-mock": "^3.14.0",
"@antfu/eslint-config": "^6.2.0",
"@cloudflare/vitest-pool-workers": "^0.10.3",
"@nuxt/eslint": "^1.10.0",
"@nuxt/eslint-config": "^1.10.0",
"@nuxthub/core": "^0.9.0",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/i18n": "^10.1.2",
"@tailwindcss/vite": "^4.1.16",
"@vueuse/integrations": "^14.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.39.0",
"eslint-plugin-better-tailwindcss": "^3.7.10",
"eslint-plugin-format": "^1.0.2",
"lint-staged": "^16.2.6",
"nuxt": "^4.2.0",
"shadcn-nuxt": "^2.3.2",
"simple-git-hooks": "^2.13.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vitest": "^4.0.6",
"vue-tsc": "^3.1.2",
"wrangler": "^4.45.3"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}