-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.69 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
{
"name": "bitlock",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"preview": "nuxt preview",
"generate": "nuxt generate",
"typecheck": "node ./node_modules/vue-tsc/bin/vue-tsc.js --noEmit -p ./.nuxt/tsconfig.json",
"postinstall": "nuxt prepare",
"test": "bun run test:security && bun run test:migration && bun run test:i18n && bun run test:quality && bun run typecheck",
"test:smoke": "bun scripts/smoke-api.mjs",
"test:i18n": "bun scripts/check-i18n.mjs",
"test:security": "bun scripts/security-self-test.mjs",
"test:migration": "node scripts/migration-self-test.mjs",
"test:quality": "bun scripts/quality-check.mjs",
"db:migrate": "bun scripts/run-turso-sql.mjs server/database/schema.sql",
"db:setup:turso": "bun scripts/run-turso-sql.mjs server/database/schema.sql",
"db:migrate:turso:terms": "bun scripts/run-turso-sql.mjs server/database/migrate-terms.sql"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.0",
"@libsql/client": "^0.17.3",
"@nuxt/icon": "^1.10.0",
"@scure/bip39": "^2.2.0",
"@types/qrcode": "^1.5.6",
"bcryptjs": "^3.0.3",
"nuxt": "^3.21.11",
"nuxt-auth-utils": "^0.5.29",
"qrcode": "^1.5.4",
"vue": "^3.5.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.12.0",
"@types/bcryptjs": "^2.4.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.7.0",
"vue-tsc": "^3.3.5"
},
"overrides": {
"brace-expansion": "5.0.9",
"nanoid": ">=3.3.17",
"postcss": ">=8.5.23",
"svgo": ">=4.0.2",
"shell-quote": ">=1.8.5",
"tar": ">=7.5.21"
}
}