-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
58
{
"name": "notion-cms-astro-blog",
"author": {
"name": "Ndamulelo Nemakhavhani",
"email": "[email protected]"
},
"description": "A rudimentary implementation of a CMS using Notion as the backend and Astro Content Collection API",
"keywords": [
"astro",
"astroJS",
"notion",
"cms",
"astro-content-collection",
"blog",
"template",
"starter"
],
"homepage": "https://github.com/ndamulelonemakh/notion-cms-astro-blog#readme",
"bugs": {
"url": "https://github.com/ndamulelonemakh/notion-cms-astro-blog/issues",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ndamulelonemakh/notion-cms-astro-blog.git"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"sync": "tsx --no-cache src/utils/downloadBlogs.ts",
"syncDev": "tsx --no-cache --env-file .env src/utils/downloadBlogs.ts"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/mdx": "^2.0.4",
"@astrojs/rss": "^4.0.2",
"@astrojs/sitemap": "^3.0.4",
"@astrojs/tailwind": "^5.1.0",
"@notionhq/client": "^2.2.14",
"astro": "^4.1.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux"
]
}