-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "nextjs-app-router-mui-template",
"description": "This is a Next.js App Router Template Using MUI. The Goal Of This Template Is To Showcase Ability To Build Complex Real World Usable Web Applications",
"author": "Shaquille Rashad Mandy",
"version": "0.5.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect=8133' next dev -p 8133",
"start": "next start -p 8133",
"build": "next build",
"rm:all": "rm -rf node_modules .next out dist build package-lock.json yarn.lock bun.lockb",
"re:dev": "npm run rm:all && bun install && npm run dev",
"re:start": "npm run rm:all && bun install && npm run start",
"re:build": "npm run rm:all && bun install && npm run build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,mdx}\" --cache",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,mdx}\" --cache",
"seed-database": "tsx prisma/seed-database.ts",
"view-database": "prisma studio",
"prepare": "husky"
},
"dependencies": {
"@auth/core": "^0.34.2",
"@auth/prisma-adapter": "^2.4.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/inter": "^5.0.18",
"@hookform/resolvers": "^3.7.0",
"@mui/icons-material": "^5.15.21",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.21",
"@mui/x-charts": "^7.8.0",
"@mui/x-data-grid": "^7.12.0",
"@mui/x-date-pickers": "^7.8.0",
"@prisma/client": "5.19.0",
"@reduxjs/toolkit": "^2.2.6",
"@tanstack/react-query": "^5.51.21",
"@tanstack/react-query-devtools": "^5.51.21",
"aos": "^2.3.4",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.13",
"i18next": "^23.11.5",
"lodash.isequal": "^4.5.0",
"mui-one-time-password-input": "^2.0.3",
"next": "^14.2.4",
"next-auth": "^5.0.0-beta.20",
"nprogress": "^0.2.0",
"nuqs": "^2.1.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-country-flag": "^3.1.0",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.1.2",
"react-phone-number-input": "^3.4.5",
"react-redux": "^9.1.2",
"resend": "^4.0.0",
"simplebar-react": "^3.2.6",
"tss-react": "^4.9.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/bcryptjs": "^2.4.6",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^20.14.9",
"@types/nprogress": "^0.2.3",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-redux": "^7.1.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"prettier": "^3.3.3",
"prisma": "5.19.0",
"typescript": "^5.5.3"
}
}