-
-
Notifications
You must be signed in to change notification settings - Fork 321
/
package.json
47 lines (47 loc) · 2.17 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
{
"name": "next",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "npm run prebuild && astro dev",
"start": "npm run prebuild && astro dev",
"prebuild:manuals": "nix build --extra-experimental-features flakes --extra-experimental-features nix-command .#manuals -o ./result-manuals && mkdir -p ./public/manual && cp --no-preserve=mode,ownership -RL ./result-manuals/* ./public/manual/",
"prebuild:pills": "nix build --extra-experimental-features flakes --extra-experimental-features nix-command .#pills -o ./result-pills && mkdir -p ./public/guides/nix-pills && cp --no-preserve=mode,ownership -RL ./result-pills/* ./public/guides/nix-pills/",
"prebuild:demos": "nix build --extra-experimental-features flakes --extra-experimental-features nix-command .#demos -o ./result-demos && mkdir -p ./public/demos && cp --no-preserve=mode,ownership -RL ./result-demos/* ./public/demos/",
"prebuild": "npm run prebuild:manuals && npm run prebuild:pills && npm run prebuild:demos",
"build": "npm run prebuild && astro build",
"preview": "astro preview",
"astro": "astro",
"linkcheck:minimal": "linkchecker http://localhost:4321 --ignore-url /manual --ignore-url /guides --ignore-url /tutorials",
"linkcheck:full": "linkchecker http://localhost:4321",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"dependencies": {
"@astrojs/mdx": "^3.1.9",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@fontsource-variable/fira-code": "^5.1.0",
"@fontsource-variable/overpass": "^5.1.1",
"@fontsource-variable/roboto-flex": "^5.1.0",
"@xmldom/xmldom": "^0.9.5",
"asciinema-player": "^3.8.1",
"astro": "^4.16.13",
"astro-icon": "^1.1.2",
"astro-seo": "^0.8.4",
"htmx.org": "^2.0.3",
"markdown-it": "^14.0.0",
"node-html-parser": "^6.1.13",
"sanitize-html": "^2.13.1",
"tailwindcss": "^3.4.15",
"turndown": "^7.2.0"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.1",
"@iconify/tailwind": "^1.1.3",
"@iconify-json/simple-icons": "^1.2.11",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
}