Files
real-time-fund/package.json
2026-02-27 08:12:01 +08:00

44 lines
971 B
JSON

{
"name": "real-time-fund",
"version": "0.1.7",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@dicebear/collection": "^9.3.1",
"@dicebear/core": "^9.3.1",
"@supabase/supabase-js": "^2.78.0",
"@tanstack/react-table": "^8.21.3",
"chart.js": "^4.5.1",
"dayjs": "^1.11.19",
"framer-motion": "^12.29.2",
"lodash": "^4.17.23",
"next": "^16.1.5",
"react": "18.3.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "18.3.1",
"tesseract.js": "^5.1.1"
},
"engines": {
"node": ">=20.9.0"
},
"devDependencies": {
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
}
}