-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.47 KB
/
package.json
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
{
"name": "theindex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"lint": "next lint",
"start": "next start",
"serve": "node cleanup.mjs && next build && next start -p 3033",
"test": "node cleanup.mjs"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.7.4",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"axios": "^1.7.9",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"dotenv": "^16.4.7",
"geoip-lite": "^1.4.10",
"ioredis": "^5.4.1",
"iso-639-3": "^3.0.1",
"jsdom": "^25.0.1",
"mongodb": "^6.11.0",
"next": "^15.0.3",
"next-auth": "^5.0.0-beta.25",
"node-fetch": "^3.3.2",
"puppeteer-core": "^23.10.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "^4.4.6",
"react-in-viewport": "^1.0.0-beta.6",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.28.0",
"sharp": "^0.33.5",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}