-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.92 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": "portfolio",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format:check": "prettier --check src .github",
"format:write": "prettier --write src .github",
"notion-to-md": "tsx src/scripts/notion-to-md.ts",
"changes-on-notion": "tsx src/scripts/changes-on-notion.ts",
"notion": "tsx src/scripts/notion-to-md.ts && tsx src/scripts/changes-on-notion.ts",
"list-buckets": "tsx src/utils/s3/listBuckets.ts",
"list-objects": "tsx src/utils/s3/listObjects.ts",
"list-objects-signed": "tsx src/utils/s3/listObjectsSigned.ts",
"clean-and-dev": "yarn cache clean && rm -rf node_modules && yarn && yarn format:write && yarn run dev",
"notion-format": "yarn notion-to-md && yarn format:write"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/cloudflare": "^11.1.0",
"@astrojs/markdown-remark": "^5.2.0",
"@astrojs/mdx": "^3.1.7",
"@astrojs/partytown": "^2.1.2",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.1",
"@astrojs/vercel": "^7.8.1",
"@aws-sdk/client-s3": "^3.666.0",
"@aws-sdk/lib-storage": "^3.666.0",
"@aws-sdk/s3-request-presigner": "^3.666.0",
"@fontsource/ibm-plex-sans": "^5.1.0",
"@notionhq/client": "^2.2.15",
"astro": "^4.15.10",
"astro-embed": "^0.7.2",
"cssesc": "./overrides/cssesc",
"dotenv": "^16.4.5",
"notion-to-md": "^3.1.1",
"sharp": "^0.33.5",
"sort-keys": "^5.1.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"unist-util-visit": "^5.0.0",
"wrangler": "3.80.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.19.1",
"vite": "^5.4.8"
},
"resolutions": {
"cssesc": "./overrides/cssesc"
}
}