forked from withastro/astro.build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "astro.build",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "astro dev",
"dev": "astro dev",
"debug": "DEBUG=* astro dev",
"build": "run-s build:astro copy:images",
"build:astro": "astro build",
"copy:images": "cp -r public/assets/images dist/assets",
"preview": "astro preview",
"format": "prettier --write .",
"lint:a11y:local": "pa11y-ci --sitemap 'http://localhost:3000/sitemap.xml' --sitemap-find 'https://astro.build' --sitemap-replace 'http://localhost:3000'",
"manual:update:contributors": "node -r dotenv/config ./scripts/update-contributors.mjs",
"update:integrations": "node -r dotenv/config ./scripts/update-integrations.mjs",
"update:sponsors": "node -r dotenv/config ./scripts/update-sponsors.mjs",
"update:themes": "node -r dotenv/config ./scripts/update-themes.mjs",
"nightly": "run-s update:*"
},
"devDependencies": {
"@astrojs/sitemap": "^0.1.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"astro": "^1.0.0-beta.12",
"astro-eleventy-img": "^0.3.2",
"astro-icon": "^0.7.1",
"autoprefixer": "^10.4.4",
"clsx": "^1.1.1",
"dotenv": "^16.0.0",
"fast-glob": "^3.2.11",
"focus-trap": "^6.7.3",
"micromorph": "^0.2.1",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^3.0.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-astro": "^0.0.12",
"sharp": "^0.30.4",
"tailwindcss": "^3.0.24"
},
"volta": {
"node": "14.18.3"
},
"dependencies": {
"date-fns": "^2.28.0",
"quicklink": "^2.2.0",
"rehype-autolink-headings": "^6.1.1",
"remark-autolink-headings": "^7.0.1",
"remark-smartypants": "^2.0.0",
"smartypants": "^0.1.6"
}
}