-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "motorsport-cal-astro",
"type": "module",
"version": "0.0.1",
"description": "A calendar for motorsport",
"author": "Sebastiaan Benjamins",
"license": "MIT",
"private": true,
"scripts": {
"dev": "astro dev --port 3000",
"dev:db": "fly proxy 5432 -a motorsport-cal-db",
"start": "bun run ./dist/server/entry.mjs",
"preview": "bun run build && bun run start",
"build": "astro check && astro build",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "0.5.10",
"@astrojs/db": "^0.11.0",
"@astrojs/svelte": "5.4.0",
"@iconify-json/fluent-emoji-high-contrast": "^1.1.15",
"@internationalized/date": "^3.5.3",
"@neondatabase/serverless": "^0.9.1",
"@sveltestack/svelte-query": "^1.6.0",
"astro": "4.7.1",
"astro-icon": "^1.1.0",
"astro-seo": "^0.8.3",
"cheerio": "^1.0.0-rc.12",
"ics": "^3.7.2",
"lucia": "^3.2.0",
"maplibre-gl": "^4.1.3",
"nanostores": "^0.10.3",
"open-props": "^1.7.4",
"pg": "^8.11.5",
"sharp": "0.33.3",
"simplex-noise": "^4.0.1",
"superjson": "^2.2.1",
"svelte": "^4.2.15",
"valibot": "^0.30.0"
},
"devDependencies": {
"@csstools/postcss-global-data": "^2.1.1",
"@faker-js/faker": "^8.4.1",
"@flydotio/dockerfile": "^0.5.7",
"@iconify/types": "^2.0.0",
"@types/node": "^20.12.8",
"@types/pg": "^8.11.6",
"autoprefixer": "^10.4.19",
"bun-types": "^1.1.7",
"cssnano": "^7.0.1",
"postcss": "^8.4.38",
"postcss-custom-media": "^10.0.4",
"postcss-nested": "^6.0.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-svelte": "^3.2.3",
"typescript": "^5.4.5"
},
"trustedDependencies": [
"sharp"
]
}