-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
57 lines (57 loc) · 1.91 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": "astronot",
"type": "module",
"version": "0.5.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"sync": "rimraf src/pages/posts/* && node src/astronot.js",
"sync:published": "rimraf src/pages/posts/* && node src/astronot.js --published",
"generate": "rimraf dist/** && ([ -d 'dist' ] || mkdir dist) && ([ -d 'dist/images' ] || mkdir dist/images) && ([ -d 'src/pages/posts' ] || mkdir src/pages/posts) && ([ -d 'src/images' ] || mkdir src/images) && ([ -d 'src/images/posts' ] || mkdir src/images/posts) && rimraf src/pages/posts/* && node src/astronot.js --published && astro build"
},
"dependencies": {
"@astrojs/mdx": "^3.0.0",
"@astrojs/react": "^3.3.4",
"@astrojs/svelte": "^5.4.0",
"@astrojs/tailwind": "^5.1.0",
"@notionhq/client": "^2.2.15",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"astro": "~4.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"flowbite": "^2.3.0",
"flowbite-svelte": "^0.44.24",
"flowbite-svelte-blocks": "^1.1.1",
"flowbite-typography": "^1.0.3",
"image-type": "^5.2.0",
"lodash": "^4.17.21",
"nanostores": "^0.10.3",
"notion-to-md": "^3.1.1",
"prettier-plugin-svelte": "^3.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"read-chunk": "^4.0.3",
"reading-time": "^1.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"rimraf": "^5.0.7",
"sharp": "^0.33.4",
"svelte": "^4.2.17",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"flowbite-svelte-icons": "^1.6.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss-animated": "^1.0.1"
}
}