-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.54 KB
/
package.json
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
{
"name": "isthepatchout",
"type": "module",
"version": "0.0.0",
"author": "BeeeQueue <adam@haglund.dev>",
"homepage": "https://isthepatchout.com",
"repository": "https://github.com/BeeeQueue/isthepatchout",
"license": "MIT",
"private": true,
"packageManager": "pnpm@9.15.1",
"engines": {
"node": "^22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,html,json}": [
"prettier --write"
]
},
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"lint": "eslint .",
"postinstall": "simple-git-hooks",
"psql": "PGPASSWORD=postgres psql -h localhost -p 54322 -U postgres -f",
"serve": "nuxi preview",
"supabase:start": "supabase start -x storage-api,imgproxy,inbucket,studio,deno-relay,edge-runtime,logflare",
"typecheck": "nuxi typecheck"
},
"resolutions": {
"esbuild": "0.24.2",
"vite": "6.0.6"
},
"dependencies": {
"@vueuse/core": "12.2.0",
"canvas-confetti": "1.9.3",
"date-fns": "4.1.0",
"dotaver": "1.0.1",
"fathom-client": "3.7.2",
"fetch-unfiller": "0.2.0",
"p-queue": "8.0.1",
"pino": "9.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "3.12.1",
"@iconify-json/simple-icons": "1.2.17",
"@iconify-json/tabler": "1.2.13",
"@morev/vue-transitions": "3.0.5",
"@nuxt/eslint": "0.7.4",
"@nuxt/icon": "1.10.3",
"@nuxtjs/google-fonts": "3.2.0",
"@nuxtjs/supabase": "1.4.5",
"@supabase/realtime-js": "2.11.2",
"@total-typescript/ts-reset": "0.6.1",
"@types/canvas-confetti": "1.9.0",
"@types/node": "22.10.2",
"@vercel/speed-insights": "1.1.0",
"@vite-pwa/nuxt": "0.10.6",
"@vueuse/nuxt": "12.2.0",
"@windicss/plugin-animations": "1.0.9",
"browserslist": "4.24.3",
"dotenv": "16.4.7",
"esbuild-plugin-browserslist": "0.15.0",
"eslint": "9.17.0",
"lint-staged": "15.2.11",
"nuxt": "3.15.0",
"nuxt-security": "2.1.5",
"nuxt-windicss": "3.0.1",
"ofetch": "1.4.1",
"pino-http": "10.3.0",
"pino-pretty": "13.0.0",
"prettier": "3.4.2",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2",
"valibot": "1.0.0-beta.9",
"vue": "3.5.13",
"vue-tsc": "2.2.0"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1"
}
}
}