-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "mealbase-lite-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:docker": "next build && docker build -t mealbase-lite .",
"start": "next start -p 3050",
"lint": "next lint",
"pm2": "pm2 start npm --name \"MealBase\" -- start"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.4",
"@mui/x-data-grid": "^5.11.1",
"bcrypt": "^5.0.1",
"cookie": "^1.0.1",
"joi": "^17.6.0",
"jose": "^4.11.4",
"mongoose": "^8.7.2",
"next": "^14.2.3",
"playwright": "^1.21.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-query": "^3.39.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/node": "17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"typescript": "4.6.4"
}
}