-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "dev-road",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"serve": "astro preview",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"tsc": "tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write src --single-quote --trailing-comma es5 --no-semi --jsx-single-quote"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/cloudflare": "^8.1.0",
"@astrojs/mdx": "^2.0.5",
"@astrojs/rss": "^4.0.2",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/solid-js": "^4.0.1",
"@solid-primitives/storage": "^3.3.0",
"@supabase/supabase-js": "^2.39.3",
"astro": "^4.2.1",
"astro-icon": "^1.0.2",
"dayjs": "^1.11.10",
"solid-js": "^1.8.12",
"typescript": "^5.3.3"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"wrangler": "^3.28.0"
}
}