-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.22 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dtr-web",
"version": "2.0.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"homepage": "https://github.com/NUDelta/dtr-web",
"engines": {
"node": ">=22.x"
},
"scripts": {
"dev": "next dev",
"build": "pnpm lint:ci && next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"lint": "eslint .",
"lint:ci": "eslint . --max-warnings=0 || true",
"lint:fix": "eslint . --fix",
"postinstall": "husky || true"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1029.0",
"@next/third-parties": "16.2.3",
"@tanstack/react-form-nextjs": "^1.29.0",
"@zl-asica/react": "^0.13.0",
"cloudflare": "^5.2.0",
"clsx": "^2.1.1",
"d3-scale": "^4.0.2",
"framer-motion": "^12.38.0",
"lucide-react": "^1.8.0",
"next": "16.2.3",
"next-nprogress-bar": "^2.4.7",
"papaparse": "^5.5.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-markdown": "^10.1.0",
"react-player": "^3.4.0",
"react-simple-maps": "^3.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"rss": "^1.2.2",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"ts-airtable": "^0.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.1.1",
"@eslint-react/eslint-plugin": "^3.0.0",
"@next/eslint-plugin-next": "^16.2.3",
"@smithy/types": "^4.14.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.16",
"@types/d3-scale": "^4.0.9",
"@types/node": "^24.10.1",
"@types/papaparse": "^5.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-simple-maps": "^3.0.6",
"@types/rss": "^0.0.32",
"baseline-browser-mapping": "^2.10.18",
"eslint": "^10.2.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-react-hooks": "^7",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"postcss": "^8.5.9",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
},
"nano-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md,mdx}": [
"eslint --fix"
]
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}