-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"private": true,
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "astro dev --port 3001",
"start": "astro dev --port 3001",
"build": "astro check && astro build",
"preview": "astro preview --port 3000 --host",
"astro": "astro",
"docker": "docker compose up --build",
"format": "prettier --write --plugin-search-dir=. .",
"tsc": "tsc",
"//sync": "Make sure access keys are set up correctly: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html",
"s3-down": "aws s3 sync s3://markmiro-website-content ../s3",
"s3-up": "aws s3 sync ../s3 s3://markmiro-website-content",
"deploy:preview": "bun run s3-up && vercel build && vercel deploy --prebuilt",
"deploy": "bun run s3-up && vercel build --prod && vercel deploy --prebuilt --prod"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/mdx": "^3.1.2",
"@astrojs/react": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.11.5",
"astro-icon": "^1.1.0",
"date-fns": "3.6.0",
"lodash": "4.17.21",
"photoswipe": "^5.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.596.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/typography": "0.5.13",
"@types/lodash": "4.17.5",
"astro-embed": "0.7.2",
"clsx": "2.1.1",
"image-size": "^1.1.1",
"prettier": "3.3.2",
"prettier-plugin-astro": "0.14.0",
"tailwindcss-animate": "^1.0.7"
}
}