-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.13 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.13 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
107
108
109
110
111
112
113
{
"name": "contentrain-studio",
"version": "0.1.0-beta.7",
"type": "module",
"private": true,
"packageManager": "pnpm@10.26.2",
"scripts": {
"build": "contentrain-query generate && nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "node ./scripts/fix-nuxt-test-utils-vitest-runtime.mjs && nuxt prepare",
"prepare": "husky",
"release": "pnpm release:check && changelogen --release",
"release:check": "pnpm lint && pnpm typecheck && pnpm test:ci && pnpm test:rls && pnpm test:e2e && pnpm build",
"changelog": "changelogen",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --project unit --project integration --project nuxt",
"test:watch": "vitest --project unit --project integration --project nuxt",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:nuxt": "vitest run --project nuxt",
"test:rls": "vitest run --project rls",
"test:e2e": "node ./scripts/run-e2e-suite.mjs",
"test:coverage": "vitest run --coverage --project unit --project integration",
"test:coverage:nuxt": "vitest run --coverage --project nuxt",
"test:coverage:html": "vitest run --coverage --project unit --project integration --coverage.reporter=html --coverage.reporter=lcov",
"test:coverage:full": "pnpm test:coverage && pnpm test:coverage:nuxt",
"test:ci": "pnpm test:unit && pnpm test:integration && pnpm test:nuxt",
"db:start": "set -a && . ./.env && set +a && pnpm dlx supabase start --workdir .",
"db:stop": "pnpm dlx supabase stop --workdir .",
"db:reset": "set -a && . ./.env && set +a && pnpm dlx supabase db reset --workdir .",
"db:status": "pnpm dlx supabase status --workdir .",
"db:migrate": "pnpm dlx supabase migration up --workdir . --local",
"db:diff": "pnpm dlx supabase db diff --workdir .",
"db:studio": "open http://127.0.0.1:54323",
"db:mail": "open http://127.0.0.1:54324",
"polar:sync": "tsx --env-file=.env scripts/polar-sync.ts"
},
"lint-staged": {
"*.{js,ts,mjs,vue}": "eslint --fix"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@aws-sdk/client-s3": "^3.1014.0",
"@contentrain/mcp": "1.4.0",
"@contentrain/query": "^5.1.2",
"@contentrain/types": "0.5.0",
"@gitbeaker/rest": "^43.8.0",
"@nuxt/eslint": "1.15.2",
"@nuxt/image": "2.0.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"@polar-sh/sdk": "^0.47.0",
"@supabase/supabase-js": "^2.99.2",
"@tailwindcss/typography": "^0.5.19",
"blurhash": "^2.0.5",
"dompurify": "^3.3.3",
"flexsearch": "^0.8.212",
"gray-matter": "^4.0.3",
"idb-keyval": "^6.2.2",
"ioredis": "^5.10.1",
"marked": "^18.0.0",
"nuxt": "^4.4.2",
"radix-vue": "^1.9.17",
"resend": "^6.9.4",
"sharp": "^0.34.5",
"slugify": "^1.6.9",
"stripe": "^21.0.1",
"vue": "^3.5.32",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@iconify/tailwind4": "^1.2.3",
"@nuxt/test-utils": "^4.0.2",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"eslint": "^10.2.0",
"fake-indexeddb": "^6.2.5",
"h3": "^1.15.8",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nuxt-mcp-dev": "^0.3.2",
"playwright-core": "^1.59.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.6"
},
"imports": {
"#contentrain": {
"types": "./.contentrain/client/index.d.ts",
"import": "./.contentrain/client/index.mjs",
"require": "./.contentrain/client/index.cjs",
"default": "./.contentrain/client/index.mjs"
},
"#contentrain/*": {
"types": "./.contentrain/client/*.d.ts",
"import": "./.contentrain/client/*.mjs",
"require": "./.contentrain/client/*.cjs",
"default": "./.contentrain/client/*.mjs"
}
}
}