-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.39 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
{
"name": "@example/basics",
"type": "commonjs",
"version": "0.0.1",
"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",
"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",
"lint": "prettier --write '**/*.{js,jsx,ts,tsx}' && eslint --fix './**/*.{js,jsx,ts,tsx}' --config .eslintrc.cjs && eslint '*/**/*.{js,ts}' --quiet --fix --config .eslintrc.cjs"
},
"dependencies": {
"@astrojs/image": "^0.18.0",
"@astrojs/mdx": "^0.19.0",
"@astrojs/react": "^2.0.0",
"@astrojs/rss": "^2.0.0",
"@astrojs/tailwind": "^3.0.1",
"@notionhq/client": "^2.2.3",
"@supercharge/promise-pool": "^3.0.0",
"@tailwindcss/typography": "^0.5.9",
"astro": "^2.8.2",
"katex": "^0.16.4",
"mermaid": "^10.0.0",
"metascraper": "^5.33.4",
"metascraper-description": "^5.33.4",
"metascraper-image": "^5.33.4",
"metascraper-title": "^5.33.4",
"node-fetch": "^3.3.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@astrojs/partytown": "^1.2.0",
"@nrwl/nx-cloud": "^16.0.0",
"@types/js-base64": "^3.3.1",
"@types/metascraper": "^5.14.1",
"@types/metascraper-description": "^5.14.1",
"@types/metascraper-image": "^5.14.0",
"@types/metascraper-title": "^5.14.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"astro-compress": "^2.0.15",
"astro-icon": "^0.8.0",
"cli-progress": "^3.11.2",
"eslint": "^8.37.0",
"eslint-plugin-astro": "^0.29.0",
"nx": "16.7.4",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.12.0",
"svgo": "2.8.0"
},
"nx": {
"targets": {
"_fetch-notion-blocks": {
"inputs": [
"!{projectRoot}/**/*",
"!{projectRoot}/**/.*",
"!{projectRoot}/**/.*/**/*",
{
"env": "DATABASE_ID"
}
],
"outputs": [
"{projectRoot}/tmp"
]
}
},
"includedScripts": [
"_fetch-notion-blocks"
]
}
}