-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 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
{
"name": "fm2",
"version": "0.0.1",
"private": true,
"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",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "echo 'Tests would run here' && exit 0",
"test:unit": "vitest",
"test:integration": "playwright test",
"seed:cvv": "node scripts/seed-cvv-category.js",
"cleanup:sessions": "node scripts/cleanup-sessions.mjs"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^6.0.1",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.22.2",
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@tailwindcss/typography": "^0.5.9",
"@types/jsonwebtoken": "^9.0.1",
"@types/marked": "^4.0.8",
"@types/sharp": "^0.31.1",
"@zerodevx/svelte-toast": "^0.9.2",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prisma": "6.11.0",
"svelte": "^5.35.1",
"svelte-check": "^4.2.2",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.1.5",
"tslib": "^2.4.1",
"typescript": "^5.8.3",
"vite": "^7.0.0"
},
"type": "module",
"dependencies": {
"@iconify-json/ic": "^1.2.2",
"@iconify-json/material-symbols": "^1.2.29",
"@iconify/json": "^2.2.357",
"@iconify/svelte": "^5.0.0",
"@prisma/client": "^6.11.0",
"@steeze-ui/feather-icons": "^1.3.0",
"@steeze-ui/simple-icons": "^1.4.0",
"@steeze-ui/svelte-icon": "^1.3.2",
"@types/bcrypt": "^5.0.2",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^10.0.0",
"argon2": "^0.43.0",
"bcrypt": "^6.0.0",
"canvas": "^3.1.2",
"chart.js": "^4.2.1",
"classnames": "^2.3.2",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.0",
"jsonwebtoken": "^9.0.0",
"lucide-svelte": "^0.525.0",
"marked": "^4.2.12",
"minio": "^8.0.5",
"node-2fa": "^2.0.3",
"qrcode": "^1.5.1",
"sharp": "^0.34.2",
"uuid": "^11.1.0"
}
}