-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "menus-prototype-next",
"version": "0.1.0",
"private": true,
"dependencies": {
"@next/bundle-analyzer": "^13.0.0",
"debug": "^4.3.4",
"google-auth-library": "^8.7.0",
"mongodb": "^4.10.0",
"mongoose": "^6.6.1",
"next": "^12.3.0",
"next-themes": "^0.2.1",
"nodemailer": "^6.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"sharp": "^0.31.2",
"zod": "^3.19.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"ts:dev": "npx tsc --watch --noEmit --incremental",
"test:unit": "jest",
"test:e2e": "playwright test __tests__/e2e/"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.3",
"@types/nodemailer": "^6.4.6",
"@types/react": "18.0.21",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.2.1",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"typescript": "4.8.4"
},
"engines": {
"node": ">=17.9.0"
}
}