-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "linkhub",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check && tsc --noEmit",
"lint": "eslint --ext .astro,.ts,.js,.tsx .",
"lint:fix": "eslint --ext .astro,.ts,.js,.tsx . --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@astrojs/check": "0.5.10",
"@astrojs/preact": "3.1.2",
"@astrojs/tailwind": "5.1.0",
"@astrojs/vercel": "7.5.2",
"@auth/core": "0.18.6",
"@nanostores/preact": "0.5.1",
"astro": "4.5.16",
"astro-devtoolbar-tailwind": "0.0.8",
"auth-astro": "4.1.1",
"cheerio": "1.0.0-rc.12",
"fuse.js": "7.0.0",
"nanostores": "0.10.0",
"preact": "10.19.6",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "0.43.1",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "0.31.4",
"eslint-plugin-jsx-a11y": "6.8.0",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0"
}
}