-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 KB
/
package.json
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
{
"name": "musee",
"type": "module",
"version": "1.14.2",
"private": true,
"sideEffects": false,
"author": "Ayaan Zaidi ([email protected])",
"license": "GNU GPLv3",
"description": "Self hosted gallery written in React + Astro. Ships minimal JS to the client.",
"scripts": {
"predev": "bun run imageImporter.ts",
"dev": "astro dev",
"start": "npm run dev",
"prebuild": "bun run imageImporter.ts",
"build": "astro build",
"postbuild": "bunx @divriots/jampack ./dist",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/prefetch": "^0.4.1",
"@astrojs/react": "4.1.2",
"@astrojs/tailwind": "^5.1.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"astro": "5.1.1",
"astro-critters": "^2.2.0",
"astro-purgecss": "^4.9.0",
"exifreader": "^4.26.0",
"fecha": "^4.2.3",
"framer-motion": "^11.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-masonry-css": "^1.0.16",
"sharp": "^0.33.5",
"sqids": "^0.3.0",
"tailwindcss": "^3.4.17"
},
"repository": "[email protected]:obviyus/musee.git",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^18.19.68",
"tsx": "^4.19.2"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}