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
|
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "rm -rf out/ && next build && cp cloudflare/* out/ && wrangler deploy"
},
"dependencies": {
"@fontsource/monaspace-argon": "^5.1.0",
"@fontsource/monaspace-krypton": "^5.1.0",
"@fontsource/monaspace-neon": "^5.1.0",
"@fontsource/monaspace-radon": "^5.1.0",
"@fontsource/monaspace-xenon": "^5.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"next": "14.2.15",
"react": "^18",
"react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}
|