-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "nextjs13-chat-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.12.1",
"yarn": ">=1.22.17",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"codegen": "graphql-codegen --watch"
},
"dependencies": {
"@apollo/client": "3.7.3",
"@next-auth/mongodb-adapter": "^1.1.1",
"@next/font": "^13.1.6",
"@reduxjs/toolkit": "^1.9.2",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"clsx": "^1.2.1",
"daisyui": "^2.50.0",
"eslint": "8.33.0",
"eslint-config-next": "^13.2.3",
"graphql": "^16.6.0",
"moment": "^2.29.4",
"mongodb": "^5.1.0",
"next": "^13.2.3",
"next-auth": "^4.19.2",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-loading-skeleton": "^3.1.1",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0",
"sharp": "^0.31.3",
"socket.io-client": "^4.6.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@graphql-codegen/cli": "^3.2.1",
"@graphql-codegen/client-preset": "^2.1.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"bufferutil": "^4.0.7",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"utf-8-validate": "^6.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0",
"webpack-remove-debug": "^0.1.0"
},
"resolutions": {
"webpack": "*5"
}
}