-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "skillscareers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"node scripts/setup-elasticsearch.js && next dev\" \"node scripts/sync-elasticsearch.js\"",
"setup-elastic": "node scripts/setup-elasticsearch.js",
"sync-elastic": "node scripts/sync-elasticsearch.js",
"build": "node scripts/setup-elasticsearch.js && node scripts/sync-elasticsearch.js && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@elastic/elasticsearch": "^8.17.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.1.7",
"@mui/material": "^6.1.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"dotenv": "^16.4.7",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"mongodb": "^6.12.0",
"next": "15.0.3",
"next-auth": "^4.24.10",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-leaflet": "^4.2.1",
"swiper": "^11.2.0"
},
"devDependencies": {
"concurrently": "^9.1.0",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}