-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 858 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 858 Bytes
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
{
"name": "mindtech-podcast",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev:fetch-rss": "node scripts/fetch-rss.js && astro dev",
"dev": "astro dev",
"start": "node scripts/fetch-rss.js && astro dev",
"build": "node scripts/fetch-rss.js && astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"fetch-rss": "node scripts/fetch-rss.js"
},
"dependencies": {
"@astrojs/vue": "^5.1.0",
"@tailwindcss/vite": "^4.1.12",
"astro": "^5.13.3",
"lucide-astro": "^0.541.0",
"lucide-vue-next": "^0.541.0",
"simple-icons": "^15.12.0",
"tailwindcss": "^4.1.12",
"vue": "^3.5.19",
"vue3-simple-icons": "^15.6.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}