-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.58 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@home-gallery/mono-repo",
"version": "1.21.0",
"description": "",
"type": "module",
"export": "./gallery.js",
"scripts": {
"postinstall": "npm --prefix e2e install",
"clean": "pnpm -r clean",
"build": "pnpm -r build",
"build:config": "npm-run-all schema:merge schema:merge:root schema:to-yaml",
"test": "pnpm -r test",
"test:e2e": "gauge -d e2e run specs",
"schema:merge": "pnpm -r schema:merge",
"schema:merge:root": "dev-cli schema merge",
"schema:to-yaml": "dev-cli schema to-yaml"
},
"bin": {
"gallery": "./gallery.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xemle/home-gallery.git"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^0.2.3",
"@getgauge/cli": "^1.6.25",
"@home-gallery/types": "file:packages/types",
"@react-leaflet/core": "^3.0.0",
"@tailwindcss/vite": "^4.1.12",
"@types/glob-to-regexp": "^0.4.4",
"@types/hammerjs": "^2.0.46",
"@types/leaflet": "^1.9.20",
"@types/mustache": "^4.2.6",
"@types/node": "^24.3.0",
"@types/picomatch": "^4.0.2",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.1.10",
"@types/scheduler": "^0.26.0",
"@types/tap": "^18.0.0",
"@types/tar-fs": "^2.0.4",
"@vitejs/plugin-react": "^5.0.0",
"cpy-cli": "^6.0.0",
"esbuild": "^0.25.9",
"esbuild-register": "^3.6.0",
"express": "^5.1.0",
"extract-zip": "^2.0.1",
"glob": "^11.0.3",
"hammerjs": "^2.0.8",
"http-proxy-middleware": "^3.0.5",
"ink": "^6.2.0",
"leaflet": "^1.9.4",
"live-server": "^1.2.2",
"livereload": "^0.10.3",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"pnpm": "10.14.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hotkeys-hook": "^5.1.0",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.8.0",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.12",
"tap": "^21.1.0",
"tar-fs": "^3.1.0",
"typescript": "^5.9.2",
"uuid": "^11.1.0",
"vite": "^7.1.2",
"vite-plugin-pwa": "^1.0.2",
"workbox-cli": "^7.3.0",
"zustand": "^5.0.7"
},
"dependencies": {
"@home-gallery/api-server": "file:packages/api-server",
"@home-gallery/bundle": "file:packages/bundle",
"@home-gallery/cast": "file:packages/cast",
"@home-gallery/cli": "file:packages/cli",
"@home-gallery/common": "file:packages/common",
"@home-gallery/database": "file:packages/database",
"@home-gallery/dev-tools": "file:packages/dev-tools",
"@home-gallery/events": "file:packages/events",
"@home-gallery/export-meta": "file:packages/export-meta",
"@home-gallery/export-static": "file:packages/export-static",
"@home-gallery/extractor": "file:packages/extractor",
"@home-gallery/fetch": "file:packages/fetch",
"@home-gallery/index": "file:packages/index",
"@home-gallery/plugin": "file:packages/plugin",
"@home-gallery/query": "file:packages/query",
"@home-gallery/server": "file:packages/server",
"@home-gallery/storage": "file:packages/storage",
"@home-gallery/stream": "file:packages/stream",
"@home-gallery/webapp": "file:packages/webapp"
},
"gallery": {
"config": {
"schema": "gallery.config.schema.json",
"includes": [
"packages/*/*.schema.json"
],
"yaml": "gallery.config-example.yml"
}
}
}