-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 5.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "neptun.web",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.18.2"
},
"scripts": {
"dev": "set EDITOR=code && nuxt dev",
"devx": "set EDITOR=code && nuxt dev --host --https --ssl-cert ./configurations/development/ssl/server.crt --ssl-key ./configurations/development/ssl/server.key",
"app": "export EDITOR=code && nuxt dev",
"appx": "export EDITOR=code && nuxt dev --host --https --ssl-cert ./configurations/development/ssl/server.crt --ssl-key ./configurations/development/ssl/server.key",
"preparex": "nr cleanup && nr types && nr render",
"types": "pnpx nuxi prepare",
"render": "pnpx nuxi generate",
"postinstall": "nuxt prepare",
"build": "nuxt build",
"preview": "nuxt preview",
"format-and-lint": "pnpx prettier --plugin-search-dir . --check . && pnpx eslint .",
"format": "pnpx prettier --write . --single-quote --trailing-comma es5 --semi",
"lint": "nr postinstall && eslint . --fix",
"lint-settings": "pnpx @eslint/config-inspector",
"check": "pnpx nuxi typecheck",
"shadcn": "pnpx shadcn-vue@latest add",
"cleanup": "pnpx nuxi cleanup .",
"fresh": "npm cache verify && pnpm rebuild && pnpx nuxi cleanup",
"upgrade": "pnpm dlx nuxi upgrade -f",
"up": "pnpx nuxi@latest upgrade --dedupe",
"statistics": "pnpx nuxi analyze",
"info": "pnpx nuxi info",
"find-version": "node ./helpers/find-package-version.cjs",
"db:push": "drizzle-kit push --config drizzle-dev.config.ts",
"db:push:prod": "drizzle-kit push --config drizzle-prod.config.ts",
"db:pull": "drizzle-kit introspect --config drizzle-dev.config.ts",
"db:pull:prod": "drizzle-kit introspect --config drizzle-prod.config.ts",
"db:generate": "drizzle-kit generate --config=drizzle-dev.config.ts",
"db:generate:prod": "drizzle-kit generate --config=drizzle-prod.config.ts",
"db:migrate": "bun run ./helpers/migrate.ts environment=dev",
"db:migrate:prod": "bun run ./helpers/migrate.ts environment=prod",
"db:studio": "drizzle-kit studio --config drizzle-dev.config.ts --host 127.0.0.1",
"db:studio:prod": "drizzle-kit studio --config drizzle-prod.config.ts --host 127.0.0.1",
"db:dump-data": "bun run ./helpers/backup.ts",
"db:dump-schema": "bun run ./helpers/backup.ts --schema-only",
"db:mermaid": "bun run ./helpers/schema-to-mermaid.ts",
"db:png": "bun run ./helpers/mermaid-to-png.ts",
"db:diagram": "powershell \"Start-Process cmd -Verb RunAs -ArgumentList '/k cd /d \\\"%CD%\\\" && helpers\\generate-diagram-native.bat'\""
},
"dependencies": {
"@ai-sdk/vue": "^1.1.12",
"@formkit/auto-animate": "^0.8.2",
"@huggingface/inference": "^3.3.2",
"@neondatabase/serverless": "^0.10.4",
"@nuxt/image": "^1.9.0",
"@nuxtjs/device": "^3.2.4",
"@nuxtjs/mdc": "0.13.3",
"@nuxtjs/robots": "^5.2.2",
"@octokit/graphql-schema": "^15.26.0",
"@openrouter/ai-sdk-provider": "^0.2.2",
"@radix-icons/vue": "^1.0.0",
"@simplewebauthn/browser": "11",
"@simplewebauthn/server": "11",
"@tanstack/vue-table": "^8.20.5",
"@uploadthing/nuxt": "^7.1.5",
"@upstash/redis": "^1.34.5",
"@vee-validate/zod": "^4.15.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue-email/components": "^0.0.21",
"@vue-email/render": "^0.0.9",
"ai": "^4.1.34",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"composerize-ts": "^0.6.2",
"drizzle-orm": "0.39.3",
"drizzle-zod": "^0.7.0",
"es-toolkit": "^1.32.0",
"file-saver": "^2.0.5",
"gsap": "^3.12.7",
"jszip": "^3.10.1",
"lucide-vue-next": "^0.475.0",
"nodemailer": "^6.10.0",
"nuxt": "^3.16.0",
"nuxt-auth-utils": "^0.5.16",
"nuxt-monaco-editor": "^1.3.1",
"nuxt-posthog": "^1.6.1",
"nuxt-security": "^2.1.5",
"nuxt-time": "^1.0.3",
"octokit": "^4.1.1",
"ollama-ai-provider": "^1.2.0",
"open-graph-scraper": "^6.5.0",
"postgres": "^3.4.5",
"radix-vue": "^1.9.13",
"rehype-external-links": "^3.0.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.0",
"rehype-sanitize": "^6.0.0",
"remark-flexible-code-titles": "^1.2.0",
"remark-gfm": "^4.0.1",
"shadcn-nuxt": "^0.11.3",
"shiki-stream": "^0.1.1",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^2.6.0",
"uploadthing": "^7.4.4",
"vaul-vue": "^0.2.1",
"vee-validate": "^4.15.0",
"vue": "^3.5.13",
"vue-dndrop": "~1.2.0",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.0",
"vue3-lottie": "^3.3.1",
"zod": "^3.24.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.34.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.0",
"@iconify-json/radix-icons": "^1.2.2",
"@iconify/vue": "^4.3.0",
"@mermaid-js/mermaid-cli": "^11.4.2",
"@nuxt/eslint": "^1.0.1",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/tailwindcss": "^6.13.1",
"@tailwindcss/typography": "^0.5.16",
"@types/file-saver": "^2.0.7",
"@types/nodemailer": "^6.4.17",
"@vueuse/core": "^12.6.0",
"@vueuse/nuxt": "^12.6.0",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.4",
"eslint-plugin-format": "^1.0.1",
"postcss": "^8.5.2",
"sass-embedded": "^1.83.4",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"vite-plugin-eslint2": "^5.0.3",
"vite-plugin-remove-console": "^2.2.0",
"vue-tsc": "~2.2.0"
}
}