-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pycon.jp.2025",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbopack",
"pre-build": "tsx scripts/pre-build.ts",
"pre-build:dev": "tsx --env-file .env scripts/pre-build.ts",
"build": "npm run pre-build && echo NEXT_PUBLIC_BASE_URL=$CF_PAGES_URL > .env.production && next build && next-sitemap",
"vercel-build": "npm run build",
"build:vercel": "tsx scripts/vercel-build.ts",
"build:cf": "npm run build:vercel && npx next-on-pages --skip-build",
"build:cf-optimized": "bash scripts/build-cf-optimized.sh",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.3",
"@next/third-parties": "^15.3.4",
"@types/mdx": "^2.0.13",
"axios": "^1.11.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.18",
"googleapis": "^150.0.1",
"lightningcss": "^1.28.2",
"next": "15.3.2",
"next-sitemap": "^4.2.3",
"rc-tooltip": "^6.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"swiper": "^11.2.8",
"tailwind-scrollbar-hide": "^4.0.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.12",
"@eslint/eslintrc": "^3",
"@google-cloud/local-auth": "^3.0.1",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/node-fetch": "^2.6.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"form-data": "^4.0.4",
"google-auth-library": "^10.2.1",
"node-fetch": "^2.7.0",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
}
}