-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
125 lines (125 loc) · 3.23 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "chat-app",
"version": "1.0.0",
"description": "A chat app.",
"main": "src/index.ts",
"rootDir": "src",
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier .",
"prettier:fix": "prettier --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"coverage": "nyc npm run test",
"postinstall": "prisma generate"
},
"pre-commit": [
"lint:fix",
"prettier:fix",
"build",
"test",
"coverage"
],
"keywords": [],
"author": "FallenDeity",
"license": "MIT",
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.9",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.1",
"@types/nodemailer": "^6.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.4.24",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": true,
"printWidth": 120,
"bracketSpacing": true,
"bracketSameLine": true
},
"dependencies": {
"@hookform/resolvers": "^3.1.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.0.0",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@types/react": "^18.2.8",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.6.1",
"cloudinary": "^1.39.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"emoji-picker-react": "^4.4.10",
"encoding": "^0.1.13",
"framer-motion": "^10.13.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"lucide-react": "^0.259.0",
"moment": "^2.29.4",
"next": "^13.4.4",
"next-auth": "^4.22.3",
"next-cloudinary": "^4.16.2",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.4",
"prisma": "^5.0.0",
"prop-types": "^15.8.1",
"pusher": "^5.1.3",
"pusher-js": "^8.3.0",
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-icons": "^4.10.1",
"react-select": "^5.7.4",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"recoil": "^0.7.7",
"sharp": "^0.32.4",
"tailwind-merge": "^1.13.2",
"tailwind-scrollbar": "^3.0.4",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.6",
"wavesurfer.js": "^7.0.6",
"winston": "^3.9.0",
"yup": "^1.2.0",
"zego-express-engine-webrtc": "^2.25.6",
"zustand": "^4.3.9"
}
}