-
-
Notifications
You must be signed in to change notification settings - Fork 519
/
package.json
78 lines (78 loc) · 2.13 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
{
"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 .",
"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.3",
"@astrojs/rss": "^3.0.0",
"@notionhq/client": "^2.2.5",
"@supercharge/promise-pool": "^2.4.0",
"astro": "^3.3.1",
"astro-icon": "^0.8.1",
"async-retry": "^1.3.3",
"axios": "^1.4.0",
"exif-be-gone": "^1.3.2",
"katex": "^0.16.7",
"mermaid": "^10.1.0",
"metascraper": "^5.34.4",
"metascraper-description": "^5.34.4",
"metascraper-image": "^5.34.4",
"metascraper-title": "^5.34.4",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.4"
},
"devDependencies": {
"@nrwl/nx-cloud": "^15.0.2",
"@types/async-retry": "^1.4.5",
"@types/js-base64": "^3.3.1",
"@types/katex": "^0.16.7",
"@types/metascraper": "^5.14.1",
"@types/metascraper-description": "^5.14.1",
"@types/metascraper-image": "^5.14.0",
"@types/metascraper-title": "^5.14.0",
"@types/prismjs": "^1.26.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@typescript-eslint/typescript-estree": "^6.8.0",
"cli-progress": "^3.12.0",
"eslint": "^8.51.0",
"eslint-plugin-astro": "^0.27.0",
"nx": "15.5.3"
},
"nx": {
"targets": {
"_fetch-notion-blocks": {
"inputs": [
"!{projectRoot}/**/*",
"!{projectRoot}/**/.*",
"!{projectRoot}/**/.*/**/*",
{
"env": "DATABASE_ID"
}
],
"outputs": [
"{projectRoot}/tmp"
]
}
},
"includedScripts": [
"_fetch-notion-blocks"
]
}
}