-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "my-workouts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:server": "nodemon src/app/api/server.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:both": "concurrently \"npm run dev\" \"npm run dev:server\""
},
"dependencies": {
"@next/font": "^13.4.11",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.7.0",
"mongoose": "^7.4.0",
"multer": "^1.4.5-lts.1",
"next": "13.4.10",
"next-auth": "^4.22.3",
"postcss": "8.4.26",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-horizontal-scrolling-menu": "^4.1.0",
"react-icons": "^4.10.1",
"react-toastify": "^9.1.3",
"tailwindcss": "3.3.3",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"concurrently": "^8.2.0",
"nodemon": "^3.0.1"
}
}