-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.3 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.3 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
83
84
{
"name": "working-one",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "npm --prefix server run dev",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@atharvh01/linkedin-jobs-api": "^1.0.1",
"@clerk/clerk-react": "^5.61.3",
"@eslint/js": "^9.9.1",
"@mistralai/mistralai": "^1.7.2",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"clsx": "^2.1.1",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fuse.js": "^7.1.0",
"globals": "^15.9.0",
"jsonwebtoken": "^9.0.2",
"lenis": "^1.3.4",
"lucide-react": "^0.344.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.2",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"postcss": "^8.4.35",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-github-calendar": "^4.5.7",
"react-icons": "^5.6.0",
"react-router-dom": "^6.20.1",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.19"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"nodemon": "^3.0.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.19"
},
"overrides": {
"react-activity-calendar": {
"date-fns": "4.0.0"
}
}
}