-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.67 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
{
"name": "pycon.jp.2024",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./src/scripts\"));' src/scripts/prebuild.mts && next build",
"prebuild_local": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./src/scripts\"));' -r dotenv/config src/scripts/prebuild.mts dotenv_config_path=.env.local",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@heroicons/react": "^2.1.5",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@types/mdx": "^2.0.13",
"axios": "^1.7.5",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"googleapis": "^140.0.1",
"jose": "^5.6.3",
"negotiator": "^0.6.3",
"next": "^14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.0",
"@tailwindcss/typography": "^0.5.13",
"@types/negotiator": "^0.6.3",
"@types/node": "^20.9.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.0",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"typescript": "^5"
}
}