-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.77 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
{
"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.17",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^6.0.0",
"@headlessui/react": "^2.1.2",
"@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.0.0",
"dayjs": "^1.11.12",
"dompurify": "^3.2.4",
"framer-motion": "^12.35.2",
"gray-matter": "^4.0.3",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"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.77.8",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.3",
"three": "^0.183.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.12",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"npm-run-all": "^4.1.5",
"pagefind": "^1.1.1"
}
}