-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "44th-homepage",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node scripts/download-images.mjs",
"dev": "next dev",
"prebuild": "node scripts/download-images.mjs",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"type-check": "tsc --noEmit -p tsconfig.json",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"next": "14.2.24",
"react": "^18",
"react-dom": "^18",
"react-draggable": "^4.5.0",
"react-icons": "^5.5.0",
"react-swipeable": "^7.0.2",
"react-zoom-pan-pinch": "^3.7.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.12",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.24",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"prettier": "^3.3.3",
"@ianvs/prettier-plugin-sort-imports": "^4.5.0",
"typescript": "^5"
}
}