-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.98 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
{
"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": "svgo -f ./src/global/asset/icon ./src/global/asset/illustration",
"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": "6.0.0",
"@hail2u/css-mqpacker": "github:hail2u/node-css-mqpacker#v9.0.1",
"@types/node": "22.9.0",
"astro": "4.16.10",
"autoprefixer": "10.4.20",
"beasties": "^0.1.0",
"eslint": "9.14.0",
"eslint-config-elegant-coding": "9.8.0",
"postcss": "8.4.47",
"rimraf": "6.0.1",
"sass": "1.80.6",
"stylelint": "16.10.0",
"stylelint-config-elegant-coding": "6.0.0",
"svgo": "3.3.2",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vite": "5.4.10"
}
}