-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.41 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.41 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
{
"name": "wishlist",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . --experimental-cli && eslint .",
"format": "prettier --write . --experimental-cli",
"db:patch": "tsx prisma/patches/index.ts",
"test": "playwright test",
"test:build": "docker compose -f tests/docker/docker-compose.yaml build",
"test:setup": "playwright install --with-deps chromium"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@floating-ui/dom": "^1.7.3",
"@humanspeak/svelte-markdown": "^1.0.0",
"@internationalized/date": "^3.10.0",
"@playwright/test": "^1.53.1",
"@skeletonlabs/skeleton": "^4.12.0",
"@skeletonlabs/skeleton-svelte": "^4.12.0",
"@sveltejs/adapter-node": "^5.3.1",
"@sveltejs/kit": "^2.33.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.18",
"@types/eslint": "^9.6.1",
"@types/node": "^24.12.3",
"@types/nodemailer": "^8.0.0",
"@types/pulltorefreshjs": "^0.1.7",
"@vite-pwa/sveltekit": "^1.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^10.0.0",
"eslint-plugin-svelte": "^3.11.0",
"fuzzysort": "^3.1.0",
"globals": "^17.0.0",
"pino-pretty": "^13.1.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"pulltorefreshjs": "^0.1.22",
"svelte": "^5.38.2",
"svelte-check": "^4.3.1",
"svelte-dnd-action": "^0.9.64",
"svelte-eslint-parser": "^1.3.0",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.40.0",
"vite": "^8.0.0",
"vite-plugin-pwa": "^1.0.2",
"workbox-build": "^7.3.0",
"workbox-window": "^7.3.0"
},
"type": "module",
"dependencies": {
"@metascraper/helpers": "^5.49.1",
"@noble/hashes": "^2.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@paralleldrive/cuid2": "^3.0.0",
"@prisma/adapter-better-sqlite3": "^7.1.0",
"@prisma/client": "^7.1.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-de": "^3.0.2",
"@zxcvbn-ts/language-en": "^3.0.2",
"@zxcvbn-ts/language-es-es": "^3.0.2",
"@zxcvbn-ts/language-fr": "^3.0.2",
"dotenv": "^17.2.3",
"got-scraping": "^4.1.2",
"handlebars": "^4.7.8",
"metascraper": "^5.49.1",
"metascraper-image": "^5.49.1",
"metascraper-title": "^5.49.1",
"nodemailer": "^8.0.0",
"openid-client": "^6.6.4",
"pino": "^10.0.0",
"prisma": "^7.1.0",
"sharp": "^0.34.3",
"svelte-i18n": "^4.0.1",
"svelte-virtuallists": "^1.4.2",
"tsx": "^4.21.0",
"zod": "^4.0.17"
},
"engines": {
"node": "^24.0.0",
"pnpm": "^11"
}
}