generated from Skolaczk/next-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "next-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watchAll",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{jsx,js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"dependencies": {
"@auth/mongodb-adapter": "^2.3.3",
"@nextui-org/react": "^2.2.9",
"@t3-oss/env-nextjs": "^0.8.0",
"@tanstack/react-virtual": "^3.0.4",
"bcrypt": "^5.1.1",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"emoji-picker-react": "^4.7.12",
"framer-motion": "^11.0.3",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.312.0",
"mongodb": "^6.3.0",
"mongoose": "^8.1.1",
"nanoid": "^5.0.5",
"next": "14.1.0",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"react": "^18",
"react-dom": "^18",
"react-query": "^3.39.3",
"react-responsive": "^9.0.2",
"tailwind-merge": "^2.2.1",
"ua-parser-js": "^1.0.37",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@playwright/test": "^1.41.1",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.14.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"next-sitemap": "^4.2.3",
"postcss": "^8",
"prettier": "^3.2.4",
"tailwindcss": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}