-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "rezervo-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write '**/*.{js,ts,tsx,md,json,yaml,css}' --ignore-path=.gitignore",
"prettier:check": "prettier --check '**/*.{js,ts,tsx,md,json,yaml,css}' --ignore-path=.gitignore",
"lint": "next lint --ignore-path=.gitignore"
},
"dependencies": {
"@auth0/nextjs-auth0": "^2.2.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/lab": "^5.0.0-alpha.140",
"@mui/material": "^5.14.5",
"luxon": "^3.4.0",
"next": "^13.4.19",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.5",
"swr": "^2.2.1"
},
"devDependencies": {
"@types/luxon": "^3.3.1",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cypress": "^13.1.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}