-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (71 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (71 loc) · 2.5 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
{
"name": "wardrobe",
"version": "0.3.2",
"description": "Selfhosted clothing management web app for your personal wardrobe or commercial store!",
"author": "3urobeat",
"license": "AGPL-3.0",
"homepage": "https://github.com/3urobeat",
"repository": "https://github.com/wardrobe-hq/wardrobe",
"scripts": {
"clean": "rm -rf .output/ .nuxt/",
"lint": "tsc -p . ; eslint .",
"build": "nuxt build",
"dev": "nuxt dev --host 0.0.0.0",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs",
"bs": "npm run build && npm run start",
"update": "git pull && npm i && npm run build",
"get-version": "grep \"\\\"version\\\":\" package.json | awk '{split($0,a,\" \"); print $2}' | sed -r 's/\"|,//g'",
"docker-build": "DOCKER_BUILDKIT=1 docker build --progress=plain -t 3urobeat/wardrobe:latest -t 3urobeat/wardrobe:$(npm run get-version | tail -n 1) .",
"docker-volume-create": "docker volume create wardrobe-data",
"docker-start": "npm run docker-volume-create && docker run -p 3000:3000 -v wardrobe-data:/usr/src/wardrobe/data 3urobeat/wardrobe:latest",
"docker-bs": "npm run docker-build && npm run docker-start",
"docker-push": "docker image push 3urobeat/wardrobe:latest && docker image push 3urobeat/wardrobe:$(npm run get-version | tail -n 1)"
},
"keywords": [
"wardrobe",
"clothing",
"clothes",
"management",
"selfhosted"
],
"bugs": {
"url": "https://github.com/wardrobe-hq/wardrobe/issues"
},
"dependencies": {
"@nuxtjs/i18n": "^10.3.0",
"@phosphor-icons/vue": "^2.2.1",
"@seald-io/nedb": "^4.1.2",
"@tailwindcss/vite": "^4.2.4",
"@types/three": "^0.184.0",
"@vueuse/components": "^14.2.1",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"@vueuse/nuxt": "^14.2.1",
"canvas": "^3.2.3",
"jsondiffpatch": "^0.7.3",
"nuxt": "^4.4.2",
"sharp": "^0.34.5",
"sortablejs": "^1.15.7",
"systeminformation": "^5.31.5",
"three": "^0.184.0",
"three-stdlib": "^2.36.1",
"vue": "^3.5.33"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nuxt/devtools": "^3.2.4",
"@types/node": "^25.6.0",
"@types/sortablejs": "^1.15.9",
"@typescript-eslint/parser": "^8.59.0",
"autoprefixer": "^10.5.0",
"eslint": "^10.2.1",
"eslint-plugin-jsdoc": "^62.9.0",
"globals": "^17.5.0",
"postcss": "^8.5.12",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
}
}