-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "dsa-tracker-website",
"version": "1.0.0",
"description": "A comprehensive DSA tracker website integrated with LeetCode API",
"main": "index.js",
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"server": "nodemon server/index.js",
"server:enhanced": "nodemon server/enhanced-index.js",
"db:setup": "node database/setup.js",
"admin": "echo 'Visit http://localhost:3001/admin to access admin portal'"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.2.0",
"autoprefixer": "^10.4.16",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"framer-motion": "^10.18.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.1",
"next": "^14.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.5.2",
"recharts": "^2.8.0",
"sqlite3": "^5.1.6",
"tailwindcss": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
}
}