-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "micro-account",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "node --test tests/**/*.test.mjs",
"lint": "eslint",
"tax:update": "ts-node jobs/scheduleTaxUpdate.ts",
"check:knowledge": "node scripts/verify-knowledge-sync.mjs",
"check:consistency": "node scripts/weekly-consistency-audit.mjs"
},
"dependencies": {
"@react-oauth/google": "^0.13.4",
"@vercel/postgres": "^0.10.0",
"axios": "^1.15.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"exceljs": "^4.4.0",
"framer-motion": "^12.36.0",
"googleapis": "^171.4.0",
"jose": "^6.2.3",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^0.577.0",
"next": "^16.2.1",
"next-auth": "^4.24.14",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"pg": "^8.20.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-barcode": "^1.6.1",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"tailwindcss": "^4.2.2",
"typescript": "^5"
}
}