-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 835 Bytes
/
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
{
"name": "webserver",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/sitemap": "^3.1.0",
"@trpc/client": "^10.45.1",
"@trpc/server": "^10.45.1",
"astro": "^4.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@astrojs/check": "^0.5.5",
"@astrojs/tailwind": "^5.1.0",
"@typescript-eslint/parser": "^7.0.2",
"eslint-plugin-astro": "^0.31.4",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}