forked from hoangvvo/nextjs-mongodb-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.24 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
{
"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": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangvvo/nextjs-mongodb-app.git"
},
"author": "Hoang Vo (https://www.hoangvvo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoangvvo/nextjs-mongodb-app/issues"
},
"homepage": "https://github.com/hoangvvo/nextjs-mongodb-app#readme",
"dependencies": {
"@sendgrid/mail": "^7.0.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.20.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"mongodb": "^3.5.5",
"multer": "^1.4.2",
"next": "^9.3.1",
"next-connect": "^0.6.1",
"next-session": "^3.0.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"swr": "^0.2.0",
"validator": "^13.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0"
}
}