-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) 路 4.25 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) 路 4.25 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "news-content-recommender-system",
"version": "0.2.0",
"private": true,
"description": "ArticleHorizon is a smart news article recommender webapp that helps users discover relevant and engaging content tailored to their interests.",
"author": "https://github.com/RedDotz20",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "prisma generate --no-hints && next build",
"start": "next start",
"lint": "eslint --no-cache .",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "prisma generate --no-hints",
"clean:modules": "rimraf ./node_modules",
"clean:cache": "rimraf .next",
"clean:all": "bun run clean:modules && bun run clean:cache && bun i",
"analyze": "ANALYZE=true bun run build",
"prepare": "husky",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint --no-cache --quiet .",
"check-all": "bun run check-format && bun run check-lint && bun run check-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedDotz20/news-content-recommender-system.git"
},
"keywords": [
"news",
"collaborative-filtering",
"content-based-filtering",
"articles-recommendations",
"nextjs15"
],
"bugs": {
"url": "https://github.com/RedDotz20/news-content-recommender-system/issues"
},
"homepage": "https://github.com/RedDotz20/news-content-recommender-system#readme",
"dependencies": {
"@next/bundle-analyzer": "16.2.7",
"@prisma/client": "^6.1.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.3",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.2",
"@tanstack/react-query": "^5.62.8",
"@tanstack/react-query-devtools": "^5.62.8",
"@vercel/functions": "^1.5.2",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"lodash": "^4.17.21",
"lucide-react": "^0.468.0",
"next": "16.2.7",
"next-compose-plugins": "^2.2.1",
"next-devtools-mcp": "^0.3.10",
"next-safe-action": "^7.10.2",
"next-themes": "^0.4.6",
"prettier": "^3.4.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hook-form": "^7.54.2",
"shadcn": "^4.8.3",
"skeleton": "^0.1.2",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/upgrade": "^4.3.0",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/bun": "^1.1.14",
"@types/eslint__eslintrc": "^2.1.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"eslint": "^9.17.0",
"eslint-config-next": "16.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^6.1.0",
"supabase": "^2.1.1",
"tailwindcss": "^4.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"module": "index.ts",
"overrides": {
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3"
}
}