-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"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@10.11.0",
"engines": {
"node": "^22"
},
"simple-git-hooks": {
"pre-commit": "node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"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"
},
"dependencies": {
"@vueuse/core": "13.3.0",
"canvas-confetti": "1.9.3",
"dotaver": "1.0.1",
"p-queue": "8.1.0",
"pino": "9.7.0",
"temporal-polyfill": "0.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "5.0.0",
"@iconify-json/simple-icons": "1.2.36",
"@iconify-json/tabler": "1.2.18",
"@morev/vue-transitions": "3.0.5",
"@nuxt/eslint": "1.7.1",
"@nuxtjs/google-fonts": "3.2.0",
"@nuxtjs/supabase": "1.5.1",
"@supabase/realtime-js": "2.11.9",
"@total-typescript/ts-reset": "0.6.1",
"@types/canvas-confetti": "1.9.0",
"@types/node": "22.15.29",
"@unocss/nuxt": "66.1.3",
"@unocss/reset": "66.1.3",
"@vite-pwa/nuxt": "1.0.3",
"@vueuse/nuxt": "13.3.0",
"browserslist": "4.25.0",
"dotenv": "16.5.0",
"esbuild-plugin-browserslist": "1.0.2",
"eslint": "9.32.0",
"nano-staged": "0.8.0",
"nuxt": "4.0.0-alpha.1",
"nuxt-security": "2.2.0",
"ofetch": "1.4.1",
"pino-http": "10.4.0",
"pino-pretty": "13.0.0",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.14",
"simple-git-hooks": "2.13.1",
"typescript": "5.9.2",
"valibot": "1.2.0",
"vue": "3.5.16",
"vue-tsc": "3.0.4"
}
}