-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 991 Bytes
/
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-blog-with-auth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"docs": "npx typedoc",
"lint": "next lint"
},
"dependencies": {
"@next-auth/mongodb-adapter": "^1.1.1",
"@popperjs/core": "^2.11.7",
"@types/node": "18.15.11",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"bcrypt": "^5.1.0",
"bootstrap": "^5.2.3",
"date-fns": "^2.29.3",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"mongodb": "^5.1.0",
"mongoose": "^7.0.3",
"next": "13.2.4",
"next-auth": "^4.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-loader-spinner": "^5.3.4",
"react-quill": "^2.0.0",
"typescript": "5.0.3",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bootstrap": "^5.2.6",
"@types/validator": "^13.7.14",
"typedoc": "^0.23.28"
}
}