-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 859 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 859 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
{
"name": "4-2-nextjs-rsc-react-query",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3342",
"build": "next build",
"start": "next start",
"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.1.1",
"react-dom": "19.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.4.6",
"@tanstack/react-query-devtools": "^5.85.0",
"@types/node": "^24",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5"
}
}