-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.89 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
{
"name": "astro_template_webpage",
"description": "📦️ This repository that contains an Astro template ready for any website you can imagine. It's like a Swiss Army knife for developers, offering pre-built modules and flexible configurations to kickstart your project, regardless of its type.",
"author": "Luis Monsalve <TheElegantCoder>, Astralys Software <astralysoftware.com>",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=8.0.0"
},
"scripts": {
"preinstall": "npx only-allow bun",
"dev": "astro dev",
"prod": "astro preview",
"check": "astro check",
"build": "rimraf ./dist && pnpm lint && astro check && astro build",
"build:test": "rimraf ./dist && astro build",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:eslint": "eslint . --fix",
"lint:stylelint": "stylelint ./src/**/*.{scss,css} --fix",
"compress:svg": "node --loader ts-node/esm ./script/module/compression/svg.ts",
"deploy": "pnpm build && pnpm deploy:sync",
"deploy:sync": "aws s3 sync ./dist 's3://BUCKECT-NAME.com/' --cache-control max-age=604800",
"deploy:invalidate": "aws cloudfront create-invalidation --distribution-id DISTRIBUTION-ID --paths '/*'"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/partytown": "2.1.2",
"@astrojs/rss": "4.0.9",
"@astrojs/sitemap": "3.2.1",
"@fullhuman/postcss-purgecss": "7.0.2",
"@types/node": "22.9.1",
"astro": "4.16.14",
"autoprefixer": "10.4.20",
"beasties": "^0.1.0",
"eslint": "9.15.0",
"eslint-config-elegant-coding": "9.8.2",
"postcss": "8.4.49",
"rimraf": "6.0.1",
"sass": "1.81.0",
"stylelint": "16.10.0",
"stylelint-config-elegant-coding": "6.1.0",
"svgo": "3.3.2",
"typescript": "5.6.3",
"vite": "5.4.11"
}
}