-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 Bytes
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
{
"name": "simple-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ckeditor/ckeditor5-react": "^6.1.0",
"bcrypt": "^5.1.1",
"ckeditor5-custom-build": "file:libs/ckeditor5",
"mongoose": "^8.0.0",
"next": "13.5.4",
"next-auth": "^4.24.3",
"nodemailer": "^6.9.7",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^4.11.0",
"react-loading-skeleton": "^3.3.1",
"sass": "^1.69.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/node": "^20",
"@types/nodemailer": "^6.4.13",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-google-recaptcha": "^2.1.7",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"typescript": "^5"
}
}