-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "yoga-sof",
"version": "0.4.8",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate-favicons": "node scripts/favicons.js",
"lint": "next lint",
"lint-fix": "eslint --fix 'src/*.ts' 'src/*.tsx'",
"prisma-migrate-dev": "npx dotenv -e .env.development -- npx prisma migrate dev; npx prisma generate",
"start-production": "npx next start -p 8085 -H localhost",
"prisma-migrate-production": "npx dotenv -e .env.production -- npx prisma migrate deploy; npx prisma generate",
"backup-production": "bash scripts/backup-production.sh",
"update-production": "bash scripts/update-production.sh",
"run-production": "bash scripts/run-production.sh"
},
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@fontsource/nunito": "^4.5.12",
"@hookform/resolvers": "^3.1.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"@mui/x-data-grid": "6.2.0",
"@mui/x-date-pickers": "6.2.0",
"@next-auth/prisma-adapter": "1.0.3",
"@next/mdx": "^13.3.4",
"@prisma/client": "^4.13.0",
"@tanstack/react-query": "^4.29.5",
"@trpc/client": "^10.24.0",
"@trpc/next": "^10.24.0",
"@trpc/react-query": "^10.24.0",
"@trpc/server": "^10.24.0",
"date-fns": "^2.30.0",
"ics": "^3.1.0",
"next": "^13.3.4",
"next-auth": "4.6.1",
"next-type-safe-routes": "^0.3.1-alpha.1",
"nodemailer": "^6.9.1",
"notistack": "^3.0.1",
"pdfmake": "^0.2.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-hook-form-mui": "6.0.1",
"react-use": "^17.4.0",
"recharts": "^2.5.0",
"superjson": "^1.12.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/pdfmake": "^0.2.2",
"@types/nodemailer": "^6.4.7",
"@types/react-dom": "^18.2.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.3.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"favicons": "7.1.2",
"prisma": "^4.13.0",
"typescript": "^5.0.4"
}
}