forked from realDarkCode/attendance-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.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
{
"name": "attendance-tracker",
"version": "1.0.0",
"description": "A fullstack Next.js app that logs into your college portal, scrapes attendance data using Puppeteer, stores it in a local JSON file, and displays your attendance visually on a calendar UI.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 4040",
"lint": "next lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/postcss": "^4.1.11",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.539.0",
"next": "^15.3.5",
"node-notifier": "^10.0.1",
"postcss": "^8.5.6",
"puppeteer": "^24.12.1",
"react": "^19.1.0",
"react-day-picker": "^9.8.1",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"tw-animate-css": "^1.3.6"
}
}