-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "@advanced-astro/astro-docs-template",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"preview": "astro preview",
"start": "astro dev",
"prettier:check": "prettier --check --plugin-search-dir=. .",
"format": "prettier --cache --write --plugin-search-dir=. .",
"lint:scss": "stylelint \"src/**/*.{astro,scss}\""
},
"dependencies": {
"@algolia/client-search": "^4.20.0",
"@astrojs/preact": "^3.0.1",
"@astrojs/react": "^3.0.5",
"@docsearch/css": "^3.5.2",
"@docsearch/react": "^3.5.2",
"@types/node": "^20.9.1",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"astro": "^3.5.5",
"preact": "^10.19.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@astrojs/mdx": "^1.1.5",
"@astrojs/sitemap": "^3.0.3",
"astro-robots-txt": "^1.0.0",
"html-escaper": "^3.0.3",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-standard": "^34.0.0"
}
}