-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.81 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
{
"name": "outfitter",
"version": "0.5.2",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"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 .",
"prepare": "husky",
"i18n:check": "bun scripts/checkTranslations.ts",
"db:migrate": "bun scripts/db/migrate.ts",
"db:create-migration": "bun scripts/db/createMigration.ts",
"db:make-admin": "bun scripts/db/makeAdmin.ts",
"db:bootstrap": "bun scripts/bootstrap.ts",
"repo:version-bump": "scripts/version-bump.sh",
"repo:docker-build": "scripts/build-image.sh",
"repo:deploy": "scripts/build-image.sh",
"test": "vitest",
"test:watch": "vitest --watch"
},
"lint-staged": {
"*.{js,ts,svelte,json,css,md}": "prettier --write"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@internationalized/date": "^3.10.1",
"@lucide/svelte": "^0.562.0",
"@sveltejs/enhanced-img": "^0.9.2",
"@sveltejs/kit": "^2.49.5",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/table-core": "^8.21.3",
"@types/bun": "latest",
"@types/canvas-confetti": "^1.9.0",
"@types/chalk": "^2.2.4",
"@types/colorthief": "^2.6.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^7.0.5",
"@types/qrcode": "^1.5.6",
"@types/speakeasy": "^2.0.10",
"bits-ui": "^2.15.4",
"embla-carousel-svelte": "^8.6.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.14.0",
"formsnap": "^2.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"layerchart": "^1.0.13",
"lint-staged": "^16.2.7",
"paneforge": "^1.0.2",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"dependencies": {
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.2",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"chalk": "^5.6.2",
"clsx": "^2.1.1",
"colorthief": "^2.6.0",
"iovalkey": "^0.3.3",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^7.0.12",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"speakeasy": "^2.0.0",
"svelte-adapter-bun": "^1.0.1",
"sveltekit-superforms": "^2.29.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.5"
}
}