-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
65 lines (65 loc) · 2.03 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
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
{
"name": "nextjs-14-template",
"version": "1.0.0",
"author": "Anwar Hossain",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true next build",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --write .",
"lint": "yarn eslint && yarn prettier",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"postbuild": "next-sitemap && yarn prisma generate",
"postinstall": "yarn prisma generate"
},
"lint-staged": {
"*.{js,jsx,md,ts,tsx,html,css,scss}": "yarn prettier",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --cache-location ./node_modules/.cache/.eslintcache"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@next/bundle-analyzer": "^15.0.1",
"@prisma/client": "^5.21.1",
"@tanstack/react-query": "^5.59.16",
"@tanstack/react-query-devtools": "^5.59.16",
"axios": "^1.7.7",
"config": "^3.3.12",
"date-fns": "^4.1.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"next": "15.0.1",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"tailwindcss": "^3.4.14",
"winston": "^3.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "7.12.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"typescript": "^5.5.4"
}
}