-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "robotics-website",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && echo '_worker.js' >> dist/.assetsignore",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"prepare": "husky",
"prettier": "prettier --write . --plugin=prettier-plugin-astro --plugin=prettier-plugin-svelte",
"deploy": "wrangler deploy"
},
"dependencies": {
"@astrojs/cloudflare": "^12.5.3",
"@astrojs/svelte": "^7.1.0",
"@tailwindcss/vite": "^4.1.7",
"astro": "^5.8.0",
"clsx": "^2.1.1",
"lucide-svelte": "^0.511.0",
"svelte": "^5.33.2",
"svelte-motion": "^0.12.2",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@astrojs/mdx": "^4.3.0",
"@astrojs/sitemap": "^3.4.0",
"@tailwindcss/typography": "^0.5.16",
"daisyui": "^5.0.37",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"mdast-util-to-string": "^4.0.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.4.0",
"reading-time": "^1.5.0",
"tailwindcss": "^4.1.7",
"wrangler": "^4.16.1"
},
"lint-staged": {
"*.{js,css,md,astro,ts,svelte}": "prettier --write . --plugin=prettier-plugin-astro --plugin=prettier-plugin-svelte"
}
}