-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 938 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 938 Bytes
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
{
"name": "next-app-mantine-tailwind-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.15.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@mantine/core": "^9.0.0",
"@mantine/hooks": "^9.0.0",
"next": "^16.2.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-preset-mantine": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"eslint-config-prettier": "^10.1.8",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@10.33.0"
}