-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.81 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
63
64
65
66
67
{
"name": "stormgateworld-web",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"astro": "astro",
"build-api": "openapi --input https://api.stormgateworld.com/api-docs/openapi.json --output ./src/lib/api --postfixServices Api --useOptions --indent 2 && pnpm format",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^2.2.0",
"@astrojs/node": "^7.0.4",
"@astrojs/solid-js": "^4.0.1",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/nunito-sans": "^5.0.9",
"@kobalte/core": "^0.12.1",
"@kobalte/tailwindcss": "^0.9.0",
"@solid-primitives/refs": "^1.0.6",
"@types/chart.js": "^2.9.41",
"astro": "^4.2.4",
"chart.js": "^4.4.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^3.3.1",
"lodash": "^4.17.21",
"lucide-solid": "^0.319.0",
"lucide-static": "^0.319.0",
"satori": "^0.10.13",
"satori-html": "^0.3.2",
"sharp": "^0.32.6",
"solid-chartjs": "^1.3.9",
"solid-js": "^1.8.12",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@jasikpark/astro-svg-loader": "github:robertvanhoesel/astro-svg-loader",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.17",
"husky": "^9.0.10",
"openapi-typescript-codegen": "^0.27.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.9.1",
"prettier-plugin-tailwindcss": "^0.3.0"
},
"trustedDependencies": [
"sharp"
],
"prettier": {
"printWidth": 120,
"semi": false,
"plugins": [
"prettier-plugin-astro"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}