-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 743 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "leonincs-blog",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev --host 127.0.0.1",
"build": "astro check && astro build",
"preview": "astro preview --host 127.0.0.1",
"migrate": "node scripts/migrate-content.mjs",
"test:comments": "node --test scripts/comments.test.mjs",
"test:obsidian": "node --test scripts/obsidian-sync.test.mjs",
"sync:obsidian": "node scripts/sync-obsidian.mjs",
"import:obsidian": "node scripts/import-blog-to-obsidian.mjs",
"publish:obsidian": "node scripts/publish-obsidian.mjs"
},
"dependencies": {
"@astrojs/check": "latest",
"@astrojs/rss": "latest",
"astro": "latest",
"typescript": "latest"
}
}