-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "astro-sphere",
"type": "module",
"version": "1.0.0",
"scripts": {
"build:knowledge": "node scripts/build-knowledge.mjs",
"predev": "npm run build:knowledge",
"dev": "astro dev",
"dev:network": "astro dev --host",
"start": "astro dev",
"build": "npm run build:knowledge && astro check && astro build",
"preview": "astro preview",
"preview:network": "astro dev --host",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/mdx": "^4.3.12",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/solid-js": "^5.1.3",
"@astrojs/tailwind": "^6.0.2",
"@tailwindcss/typography": "^0.5.10",
"astro": "^5.16.4",
"clsx": "^2.1.0",
"fuse.js": "^7.0.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.33.2",
"solid-js": "^1.8.15",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"dotenv": "^17.3.1",
"gray-matter": "^4.0.3"
}
}