-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 825 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 825 Bytes
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
{
"name": "mask-event-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon server.js",
"build": "next build",
"start": "node server.js",
"lint": "next lint",
"update-branch": "git fetch $(git rev-parse --symbolic-full-name --abbrev-ref @{upstream} | sed 's!/! !') && git merge FETCH_HEAD"
},
"dependencies": {
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"mongoose": "^8.5.2",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-social-icons": "^6.17.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@types/node": "22.1.0",
"@types/react": "18.3.3",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"nodemon": "^3.1.4"
}
}