-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "mailing-list",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@eslint/js": "^9.27.0",
"@iconify/svelte": "^5.0.0",
"@sveltejs/adapter-auto": "^6.0.1",
"@sveltejs/adapter-vercel": "^5.7.2",
"@sveltejs/kit": "^2.21.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.1.7",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.2",
"@types/sanitize-html": "^2.16.0",
"@types/three": "^0.177.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-svelte": "^3.9.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.33.2",
"svelte-check": "^4.2.1",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"gsap": "^3.13.0",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-http-backend": "^3.0.2",
"lenis": "^1.3.4",
"nodemailer": "^7.0.3",
"pg": "^8.16.0",
"pino": "^9.7.0",
"rate-limiter-flexible": "^7.1.1",
"sanitize-html": "^2.17.0",
"three": "^0.177.0",
"three-stdlib": "^2.36.0",
"uuid": "^11.1.0",
"zod": "^3.25.56"
}
}