-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "mod-garden-website",
"type": "module",
"version": "1.4.2",
"scripts": {
"dev": "astro dev --api real",
"dev_local": "astro dev --api local",
"start": "node ./dist/server/entry.mjs --api real",
"build": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/ts/Version.ts && astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^9.3.3",
"@tailwindcss/vite": "^4.1.11",
"astro": "^5.12.8",
"astro-icon": "^1.1.5",
"flowbite": "^3.1.2",
"moment": "^2.30.1",
"sharp": "^0.34.3",
"tailwindcss": "^4.1.11",
"typescript": "^5.9.2"
},
"devDependencies": {
"@11ty/eleventy-fetch": "^5.1.0",
"@tailwindcss/typography": "^0.5.16",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"@types/node": "^24.3.1"
},
"prettier": {
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}