-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
46
47
48
49
50
{
"name": "nats-dashboard",
"version": "0.3.1",
"description": "NATS Web Dashboard",
"author": "Pierre Mdawar <pierre@mdawar.dev>",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"prebuild": "npm run check",
"postbuild": "npm run generateSW",
"check": "astro check && tsc --noEmit",
"generateSW": "node scripts/build-sw.mjs && node scripts/workbox.mjs",
"preview": "astro preview",
"format": "prettier --write \"./src\"",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/solid-js": "^4.1.0",
"@astrojs/tailwind": "^5.1.0",
"@solidjs/router": "^0.13.2",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/solid-query": "^5.32.0",
"@tanstack/solid-query-devtools": "^5.32.0",
"astro": "^4.7.0",
"date-fns": "^2.30.0",
"solid-js": "^1.8.17",
"solid-transition-group": "^0.2.3",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"astro-webmanifest": "^1.0.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2",
"workbox-build": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-recipes": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0"
}
}