-
Notifications
You must be signed in to change notification settings - Fork 288
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "nextjs-mongodb-app",
"version": "1.0.0",
"description": "Full fledged app made with Next.JS and MongoDB",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangvvo/nextjs-mongodb-app.git"
},
"author": "Hoang Vo (https://hoangvvo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoangvvo/nextjs-mongodb-app/issues"
},
"homepage": "https://github.com/hoangvvo/nextjs-mongodb-app#readme",
"dependencies": {
"@lukeed/ms": "^2.0.0",
"ajv": "^8.11.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.30.0",
"clsx": "^1.1.1",
"connect-mongo": "^4.6.0",
"express-session": "^1.17.3",
"modern-normalize": "^1.1.0",
"mongodb": "^4.7.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"next": "^12.1.6",
"next-connect": "^0.12.2",
"next-session": "^4.0.4",
"next-themes": "^0.2.0",
"nodemailer": "^6.7.5",
"passport": "0.5.2",
"passport-local": "^1.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hot-toast": "^2.2.0",
"slug": "^5.3.0",
"swr": "^1.3.0",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
}
}