-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.62 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.62 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
{
"name": "hackdavis-hacker-hub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"migrate:up": "migrate-mongo up",
"migrate:down": "migrate-mongo down",
"migrate:create": "migrate-mongo create",
"migrate:status": "migrate-mongo status",
"seed": "run-script-os",
"seed:nix": "node --env-file='.env' \"scripts/dbSeed.mjs\"",
"seed:windows": "node --env-file=\".\\.env\" \".\\scripts\\dbSeed.mjs\"",
"hackbot:seed": "node scripts/hackbotSeedCI.mjs",
"test": "run-script-os",
"test:nix": "echo 'module.exports = { presets: [[\"@babel/preset-env\"]] };' > babel.config.js && npx jest --detectOpenHandles && rm babel.config.js",
"test:windows": "echo module.exports = { presets: [['@babel/preset-env']] }; > babel.config.js && npx jest --detectOpenHandles && rm babel.config.js",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.37",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@floating-ui/dom": "^1.7.6",
"@floating-ui/react-dom": "^2.1.8",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@szhsin/react-accordion": "^1.4.0",
"@vercel/analytics": "^1.6.1",
"ai": "^6.0.105",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto": "^1.0.1",
"csv-parse": "^5.5.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"embla-carousel-auto-height": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"embla-carousel-wheel-gestures": "^8.0.0-rc05",
"font-awesome-icons": "^1.6.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"link-preview-js": "^3.0.14",
"lucide-react": "^0.473.0",
"moment": "^2.30.1",
"mongodb": "^6.10.0",
"mongodb-memory-server": "^9.1.1",
"next": "^15.5.9",
"next-auth": "^5.0.0-beta.25",
"nodemailer": "^6.9.13",
"react": "^19.1.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.1",
"react-icons": "^4.12.0",
"react-zoom-pan-pinch": "^4.0.3",
"sass": "^1.69.5",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@faker-js/faker": "^8.4.1",
"@next/eslint-plugin-next": "^14.0.4",
"@shelf/jest-mongodb": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/migrate-mongo": "^10.0.5",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit-a11y": "^1.1.0-next.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^50.0.1",
"migrate-mongo": "^11.0.0",
"postcss": "^8.5.1",
"prettier": "3.0.3",
"run-script-os": "^1.1.6",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}