-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.46 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",
"build": "next build",
"lint": "next lint",
"start": "next start",
"serve": "node cleanup.mjs && next build && next start -p 3033",
"test": "node cleanup.mjs"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next-auth/mongodb-adapter": "^1.1.3",
"axios": "^1.7.4",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"geoip-lite": "^1.4.10",
"ioredis": "^5.4.1",
"iso-639-3": "^3.0.1",
"jsdom": "^24.1.0",
"mongodb": "^5.9.2",
"next": "^14.2.12",
"next-auth": "^4.24.7",
"node-fetch": "^3.3.2",
"puppeteer-core": "^22.12.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "^4.4.6",
"react-in-viewport": "^1.0.0-beta.2",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.27.0",
"sharp": "^0.33.4",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
}
}