mirror your GitHub repos to tangled.org automatically
1{
2 "name": "synchub.to",
3 "license": "MIT",
4 "private": true,
5 "type": "module",
6 "author": {
7 "name": "Daniel Roe",
8 "email": "daniel@roe.dev",
9 "url": "https://roe.dev"
10 },
11 "scripts": {
12 "build": "nuxt build",
13 "dev": "nuxt dev",
14 "check": "vp check --no-fmt",
15 "lint": "vp lint",
16 "lint:fix": "vp lint --fix",
17 "generate": "nuxt generate",
18 "preview": "nuxt preview",
19 "postinstall": "nuxt prepare && simple-git-hooks",
20 "db:generate": "drizzle-kit generate",
21 "db:migrate": "drizzle-kit migrate",
22 "db:studio": "drizzle-kit studio",
23 "test:types": "vue-tsc -b --noEmit",
24 "test": "vp test",
25 "test:watch": "vp test watch",
26 "test:coverage": "vp test --coverage",
27 "test:unit": "vp test --project unit",
28 "test:nuxt": "vp test --project nuxt",
29 "test:browser": "playwright test",
30 "test:browser:ui": "playwright test --ui",
31 "test:browser:update": "docker run --rm --network host -v $(pwd):/work/ -v /tmp/playwright-node-modules:/work/node_modules -w /work/ -it mcr.microsoft.com/playwright:v1.59.1-noble bash -c 'corepack enable && pnpm i && pnpm playwright test test/browser --update-snapshots'"
32 },
33 "dependencies": {
34 "@neondatabase/serverless": "^1.1.0",
35 "@nuxt/fonts": "^0.14.0",
36 "@nuxt/image": "^2.0.0",
37 "@nuxt/scripts": "^1.0.6",
38 "@nuxtjs/html-validator": "^2.1.0",
39 "drizzle-orm": "^0.45.2",
40 "nuxt": "^4.4.4",
41 "nuxt-og-image": "^6.4.11",
42 "rolldown": "^1.0.0-rc.18",
43 "vite-plus": "0.1.20",
44 "vue": "3.5.33",
45 "vue-router": "^5.0.6"
46 },
47 "devDependencies": {
48 "@nuxt/test-utils": "4.0.3",
49 "@playwright/test": "1.59.1",
50 "@stylistic/eslint-plugin": "^5.10.0",
51 "@vitest/coverage-v8": "^4.1.5",
52 "@vue/test-utils": "2.4.10",
53 "drizzle-kit": "^0.31.10",
54 "happy-dom": "20.9.0",
55 "nano-staged": "^1.0.2",
56 "playwright-core": "^1.59.1",
57 "simple-git-hooks": "2.13.1",
58 "typescript": "6.0.3",
59 "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20",
60 "vue-tsc": "3.2.7"
61 },
62 "simple-git-hooks": {
63 "pre-commit": "npx nano-staged"
64 },
65 "packageManager": "pnpm@10.33.2",
66 "nano-staged": {
67 "*.{js,ts,mjs,cjs,vue,json,.*rc}": [
68 "vp lint --fix"
69 ]
70 }
71}