-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.55 KB
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
{
"name": "mojis.dev",
"type": "module",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "wrangler types && astro dev",
"start": "wrangler types && astro dev",
"build": "wrangler types && pnpm lint && astro check && astro build",
"preview": "wrangler types && astro preview",
"astro": "astro",
"lint": "eslint .",
"typecheck": "wrangler types && astro check",
"generate:client": "openapi-typescript -o ./src/api-definitions.d.ts https://api.mojis.dev/openapi.json",
"generate:client:local": "openapi-typescript -o ./src/api-definitions.d.ts http://localhost:8787/openapi.json"
},
"dependencies": {
"@astrojs/sitemap": "^3.5.0",
"@iconify-json/lucide": "^1.2.63",
"@iconify-json/ph": "^1.2.2",
"astro-icon": "^1.1.5",
"openapi-fetch": "^0.14.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^12.6.4",
"@astrojs/react": "^4.3.0",
"@luxass/eslint-config": "^5.3.0",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"astro": "^5.13.2",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.33.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"openapi-typescript": "^7.9.1",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.1.12",
"tw-animate-css": "^1.3.7",
"typescript": "^5.9.2",
"unplugin-build-meta": "^1.0.2",
"wrangler": "^4.31.0"
}
}