forked from otoyo/astro-notion-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "astro-notion-blog",
"type": "module",
"version": "0.6.3",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:cached": "npm run cache:fetch && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --ext .js,.ts,.astro src",
"format": "npx prettier --write . --plugin=prettier-plugin-astro",
"cache:fetch": "node scripts/blog-contents-cache.cjs",
"cache:purge": "nx reset && rm -f tmp/*",
"_fetch-notion-blocks": "node scripts/retrieve-block-children.cjs"
},
"dependencies": {
"@astrojs/react": "^3.0.4",
"@astrojs/rss": "^3.0.0",
"@astrojs/tailwind": "^5.0.2",
"@notionhq/client": "^2.2.13",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@supercharge/promise-pool": "^3.1.0",
"@tailwindcss/typography": "^0.5.10",
"astro": "^3.4.3",
"async-retry": "^1.3.3",
"axios": "^1.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"exif-be-gone": "^1.3.2",
"katex": "^0.16.9",
"lucide-react": "^0.292.0",
"mermaid": "^10.6.0",
"metascraper": "^5.37.1",
"metascraper-description": "^5.37.1",
"metascraper-image": "^5.37.1",
"metascraper-title": "^5.37.1",
"node-fetch": "^3.3.2",
"preline": "^1.9.0",
"prettier-plugin-tailwindcss": "^0.5.6",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@nrwl/nx-cloud": "^16.5.2",
"@rollup/plugin-yaml": "^4.1.2",
"@types/async-retry": "^1.4.7",
"@types/js-base64": "^3.3.1",
"@types/metascraper": "^5.14.2",
"@types/metascraper-description": "^5.14.3",
"@types/metascraper-image": "^5.14.2",
"@types/metascraper-title": "^5.14.2",
"@types/react": "^18.2.35",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"cli-progress": "^3.12.0",
"eslint": "^8.53.0",
"eslint-plugin-astro": "^0.29.1",
"nx": "17.0.3",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1"
},
"nx": {
"targets": {
"_fetch-notion-blocks": {
"inputs": [
"!{projectRoot}/**/*",
"!{projectRoot}/**/.*",
"!{projectRoot}/**/.*/**/*",
{
"env": "DATABASE_ID"
}
],
"outputs": [
"{projectRoot}/tmp"
]
}
},
"includedScripts": [
"_fetch-notion-blocks"
]
}
}