-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "nextjs-boilertemplate",
"version": "1.0.0",
"private": true,
"author": "Eniola Osabiya <[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@sentry/nextjs": "^7.105.0",
"@tanstack/react-query": "^5.24.8",
"@tanstack/react-query-devtools": "^5.24.8",
"axios": "^1.6.7",
"cookies-next": "^4.1.1",
"jwt-decode": "^4.0.0",
"next": "14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.4",
"valtio": "^1.13.2"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.18",
"daisyui": "^4.7.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.1",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}