-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.73 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.73 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
{
"name": "aroundhere.live",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"typecheck": "nuxi typecheck",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "prisma studio",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.54",
"@anthropic-ai/sdk": "^0.70.1",
"@aws-sdk/client-s3": "^3.989.0",
"@google/generative-ai": "^0.24.1",
"@guolao/vue-monaco-editor": "^1.6.0",
"@internationalized/date": "^3.10.0",
"@modelcontextprotocol/sdk": "^1.24.3",
"@nuxt/ui": "^4.2.1",
"@nuxt/ui-pro": "^3.3.7",
"@nuxtjs/mdc": "^0.19.1",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@types/leaflet": "^1.9.21",
"ai": "^5.0.109",
"bcrypt": "^6.0.0",
"bullmq": "^5.66.1",
"cheerio": "^1.1.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"ioredis": "^5.6.1",
"leaflet": "^1.9.4",
"monaco-editor": "^0.55.1",
"nuxt": "^4.2.1",
"nuxt-auth-utils": "^0.5.25",
"openai": "^6.9.1",
"pg": "^8.16.3",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"resend": "^6.5.2",
"sanitize-html": "^2.17.0",
"vue": "^3.5.24",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lucide": "^1.2.74",
"@nuxt/eslint": "^1.10.0",
"@playwright/test": "^1.57.0",
"@testing-library/vue": "^8.1.0",
"@types/bcrypt": "^6.0.0",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"@types/sanitize-html": "^2.16.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.6.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.6.2",
"prisma": "^7.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.9",
"vue-eslint-parser": "^10.2.0"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{ts,vue}": "bash -c 'npx nuxi typecheck'"
}
}