-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "psbthub",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"format": "prettier --write .",
"audit:deps": "npm audit --audit-level=high",
"audit:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"typecheck": "vue-tsc -b",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@noble/ciphers": "2.1.1",
"@primeuix/themes": "^2.0.3",
"@supabase/supabase-js": "^2.95.3",
"@vueuse/core": "^14.2.1",
"bitcoinjs-lib": "7.0.1",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"vue": "^3.5.28",
"vue-router": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.2.3",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"jsdom": "^28.1.0",
"lockfile-lint": "^5.0.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.4"
},
"overrides": {
"minimatch": "^10.2.2"
}
}