-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.88 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
{
"name": "GoupixDex",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"generate": "nuxt generate",
"desktop:generate": "cross-env NUXT_DESKTOP_BUILD=1 nuxt generate",
"vinted-worker:stub": "node scripts/ensure-vinted-worker-stub.mjs",
"amazon-worker:stub": "node scripts/ensure-amazon-worker-stub.mjs",
"cardmarket-worker:stub": "node scripts/ensure-cardmarket-worker-stub.mjs",
"amazon-worker:sync-dist": "node scripts/sync-amazon-worker-from-dist.mjs",
"cardmarket-worker:sync-dist": "node scripts/sync-cardmarket-worker-from-dist.mjs",
"desktop-workers:stubs": "npm run vinted-worker:stub && npm run amazon-worker:stub && npm run cardmarket-worker:stub",
"tauri:dev": "npm run desktop-workers:stubs && cross-env NUXT_PUBLIC_VINTED_LOCAL_BASE=http://127.0.0.1:18767 tauri dev",
"tauri:build": "tauri build",
"sync-db:pull-mariadb": "docker pull mariadb:11",
"postinstall": "nuxt prepare",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:ts": "vue-tsc --noEmit",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:ts",
"lint:fix": "npm run lint:prettier:fix && npm run lint:eslint:fix",
"typecheck": "nuxt typecheck"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.101",
"@iconify-json/simple-icons": "^1.2.77",
"@internationalized/date": "^3.12.0",
"@nuxt/ui": "^4.6.1",
"@nuxtjs/robots": "^6.0.7",
"@nuxtjs/sitemap": "^8.0.13",
"@tanstack/table-core": "^8.21.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.1",
"@unovis/ts": "^1.6.4",
"@unovis/vue": "^1.6.4",
"@vueuse/core": "^14.2.1",
"@vueuse/nuxt": "^14.2.1",
"axios": "^1.15.0",
"date-fns": "^4.1.0",
"gsap": "^3.15.0",
"maska": "^3.2.0",
"nuxt": "^4.4.2",
"scule": "^1.3.0",
"tailwindcss": "^4.2.2",
"vue": "^3.5.32",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@nuxt/eslint": "^1.15.2",
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"cross-env": "^10.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.4.1",
"eslint-plugin-vue": "^10.9.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"typescript": "^6.0.2",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.7"
},
"packageManager": "pnpm@10.33.0"
}