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
106 lines (106 loc) · 3.19 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.19 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sink",
"type": "module",
"version": "0.2.6",
"private": true,
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "nuxt dev --port 7465",
"analyze": "nuxt analyze",
"test": "vitest",
"build": "NODE_OPTIONS=--max-old-space-size=8192 nuxt build",
"build:map": "node scripts/build-map.js",
"build:sphere": "node scripts/build-sphere.js",
"build:colo": "node scripts/build-colo.js",
"build:testimonials": "node scripts/build-testimonials.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"types:check": "nuxt typecheck",
"wrangler": "wrangler",
"gen:types": "wrangler types",
"deploy": "npm run deploy:pages",
"deploy:pages": "wrangler pages deploy dist",
"deploy:worker": "wrangler deploy .output/server/index.mjs --assets .output/public",
"preview": "wrangler dev .output/server/index.mjs --assets .output/public ",
"postinstall": "npm run build:map && nuxt prepare",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@anatine/zod-mock": "^3.14.0",
"@antfu/eslint-config": "^7.2.0",
"@cloudflare/vitest-pool-workers": "^0.12.9",
"@internationalized/date": "^3.11.0",
"@intlify/message-compiler": "^11.2.8",
"@number-flow/vue": "^0.4.9",
"@nuxt/eslint": "^1.13.0",
"@nuxt/eslint-config": "^1.13.0",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/i18n": "^10.2.1",
"@pinia/nuxt": "^0.11.3",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/vue-form": "^1.28.0",
"@tanstack/vue-table": "^8.21.3",
"@types/d3-geo": "^3.1.0",
"@types/d3-scale": "^4.0.9",
"@types/node": "^25.2.0",
"@unovis/ts": "^1.6.4",
"@unovis/vue": "^1.6.4",
"@vueuse/core": "^14.2.0",
"@vueuse/integrations": "^14.2.0",
"@vueuse/motion": "^3.0.3",
"baseline-browser-mapping": "^2.9.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-geo": "^3.1.1",
"d3-scale": "^4.0.2",
"destr": "^2.0.5",
"embla-carousel-vue": "^8.6.0",
"es-toolkit": "^1.44.0",
"eslint": "^9.39.2",
"eslint-plugin-better-tailwindcss": "^3.8.0",
"eslint-plugin-format": "^1.3.1",
"fuse.js": "^7.1.0",
"intl-parse-accept-language": "^1.0.0",
"lint-staged": "^16.2.7",
"lucide-vue-next": "^0.563.0",
"mysql-bricks": "^2.0.0",
"nanoid": "^5.1.6",
"nuxt": "^4.3.0",
"p-limit": "^7.3.0",
"pluralize": "^8.0.0",
"qr-code-styling": "^1.9.2",
"reka-ui": "^2.8.0",
"shadcn-nuxt": "^2.4.3",
"simple-git-hooks": "^2.13.1",
"sql-bricks": "^3.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"twgl.js": "^7.0.0",
"typescript": "^5.9.3",
"ua-parser-js": "^2.0.9",
"ufo": "^1.6.3",
"vaul-vue": "^0.4.1",
"virtua": "^0.48.5",
"vite": "^7.3.1",
"vitest": "^3.2.4",
"vue-input-otp": "^0.3.2",
"vue-sonner": "^2.0.9",
"vue-tsc": "^3.2.4",
"vue3-simple-icons": "^15.6.0",
"wrangler": "^4.62.0",
"zod": "^3.25.76"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}