-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.22 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.22 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
{
"name": "prevenius",
"dependencies": {
"@aws-sdk/client-s3": "^3.966.0",
"@aws-sdk/s3-request-presigner": "^3.966.0",
"@googleapis/oauth2": "^1.0.7",
"@iconify-json/lucide": "^1.2.84",
"@iconify-json/simple-icons": "^1.2.66",
"@nuxt/content": "^3.10.0",
"@nuxt/image": "^1.11.0",
"@nuxt/ui": "^4.3.0",
"@nuxtjs/i18n": "^10.3.0",
"@octokit/oauth-app": "^8.0.3",
"@pinia/nuxt": "^0.11.3",
"@standard-schema/spec": "^1.1.0",
"@stripe/stripe-js": "^7.9.0",
"@types/leaflet": "^1.9.21",
"@vueuse/nuxt": "^13.9.0",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.9.0",
"dotenv": "^17.2.3",
"form-data": "^4.0.5",
"google-auth-library": "^9.15.1",
"handlebars": "^4.7.8",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^3.0.4",
"leaflet": "^1.9.4",
"mailgun.js": "^12.6.0",
"markdown-it": "^14.1.0",
"marked": "^16.4.2",
"md-editor-v3": "^5.8.5",
"mongoose": "^8.21.0",
"node-fetch-native": "^1.6.7",
"node-html-parser": "^7.0.2",
"nodemailer": "^8.0.5",
"nuxt": "^4.2.2",
"nuxt-og-image": "^5.1.13",
"pdfmake": "^0.2.23",
"pinia": "^3.0.4",
"qrcode": "^1.5.4",
"slugify": "^1.6.6",
"stripe": "^18.5.0",
"twilio": "^5.12.1",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"optionalDependencies": {
"sharp": "^0.34.5"
},
"devDependencies": {
"@iconify-json/fluent": "^1.2.36",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/mdi": "^1.2.3",
"@nuxt/eslint": "^1.12.1",
"@nuxt/test-utils": "^4.0.3",
"@playwright/test": "^1.59.1",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^8.0.0",
"@types/qrcode": "^1.5.6",
"@vue/test-utils": "^2.4.10",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"happy-dom": "^20.9.0",
"i": "^0.3.7",
"typescript": "^5.9.3",
"vitest": "^4.1.5",
"vue-tsc": "^2.2.12"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"vue-demi"
]
},
"private": true,
"resolutions": {
"unimport": "4.1.1"
},
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=4096' nuxt build",
"build:ci": "NODE_OPTIONS='--max-old-space-size=2048' nuxt build",
"build:render": "NODE_OPTIONS=--max-old-space-size=4096 nuxt build",
"generate": "nuxt generate",
"analyze": "nuxi analyze",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"clean": "rm -rf .nuxt .output node_modules/.cache",
"render:build": "npm ci --prefer-offline --no-audit && npm run build:render && npm prune --production",
"test:render": "./scripts/test-render-build.sh",
"test:unit": "vitest run --dir tests/unit",
"test:unit:watch": "vitest --dir tests/unit",
"test:integration": "vitest run --dir tests/integration --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "bun run test:unit && bun run test:integration && bun run test:e2e"
},
"type": "module"
}