-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.31 KB
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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "christophers-next-mui-template",
"version": "1.0.0",
"description": "A Next.js template with TypeScript, MUI, Prisma, and NextAuth.js.",
"author": "Christopher Reynolds",
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "yarn run lint:fix && yarn run format:fix && prettier --write .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --cache --max-warnings=0 \"src/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"nuke": "rm -rf node_modules && yarn install && yarn run build",
"prepare": "simple-git-hooks || true",
"prebuild": "prisma generate",
"predev": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "dotenv -e .env.test -- playwright test",
"test:e2e:ci": "playwright test"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.4.0",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.1",
"@mui/material-nextjs": "^9.1.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^3.0.3",
"next": "16.2.9",
"next-auth": "^4.24.14",
"pg": "^8.21.0",
"prisma": "^7.8.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.79.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^22",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.0.7",
"playwright": "^1.59.1",
"prettier": "^3.8.4",
"simple-git-hooks": "^2.13.1",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,yml,yaml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/christopherrobin/Christophers-Next-MUI-Template.git"
},
"engines": {
"node": ">=24.0.0"
},
"resolutions": {
"@hono/node-server": ">=1.19.13",
"diff": ">=4.0.4",
"flatted": ">=3.4.2",
"js-yaml": ">=3.14.2",
"minimatch": ">=3.1.3",
"picomatch": ">=4.0.4",
"postcss": ">=8.5.10",
"preact": ">=10.26.10",
"yaml": ">=1.10.3"
}
}