-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.35 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "elixir-no",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"copy:pagefind:dev": "npx shx cp -r dist/pagefind public/",
"build:astro": "astro check && astro build",
"build:pagefind": "npx pagefind --source dist",
"build": "npm-run-all -s build:astro build:pagefind copy:pagefind:dev",
"dev:build": "npm-run-all -s build copy:pagefind:dev dev",
"preview": "astro preview",
"astro": "astro",
"postbuild": "pagefind --site dist",
"test:slugs": "node scripts/check-slugs.mjs",
"test:pages": "node scripts/test-pages.mjs"
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/markdown-remark": "^6.0.0",
"@astrojs/mdx": "^4.0.0",
"@astrojs/react": "^4.0.0",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^6.0.2",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.1.3",
"@react-three/drei": "9.117.0",
"@react-three/fiber": "8.17.10",
"@tailwindcss/forms": "^0.5.7",
"animate.css": "^4.1.1",
"astro": "^5.18.1",
"dayjs": "^1.11.20",
"dompurify": "^3.3.3",
"framer-motion": "^12.38.0",
"gray-matter": "^4.0.3",
"leaflet": "^1.9.4",
"lodash": "^4.18.1",
"marked": "^17.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-is": "^18.3.1",
"react-leaflet": "^4.2.1",
"sass": "^1.99.0",
"slugify": "^1.6.9",
"tailwindcss": "^3.4.3",
"three": "^0.183.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@types/dompurify": "^3.2.0",
"@types/lodash": "^4.17.24",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"npm-run-all": "^4.1.5",
"pagefind": "^1.5.0"
},
"pnpm": {
"overrides": {
"minimatch@>=3.0.0 <3.1.4": "3.1.4",
"minimatch@>=4.0.0 <9.0.9": "9.0.9",
"svgo@<3.3.3": "3.3.3",
"fast-xml-parser@<5.5.7": "5.5.7",
"brace-expansion@<2.0.3": "2.0.3",
"ajv@<8.17.1": "8.17.1",
"vite@>=6.0.0 <6.4.2": "6.4.2",
"defu@<6.1.5": "6.1.5",
"picomatch@>=2.0.0 <2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"yaml@>=2.0.0 <2.8.3": "2.8.3",
"smol-toml@<1.6.1": "1.6.1",
"h3@<1.15.9": "1.15.9",
"immutable@<4.3.8": "4.3.8"
}
}
}