-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 800 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
{
"name": "2-1-nextjs-ssg",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3321",
"build": "next build",
"start": "next start -p 3321",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mantine/core": "8.2.4",
"@mantine/hooks": "8.2.4",
"@tabler/icons-react": "3.17.0",
"@tanstack/react-query": "^5.85.0",
"mantine-react-table": "^2.0.0-beta.6",
"next": "15.4.6",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.85.0",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5"
}
}