-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "nextjs-mongodb-app",
"version": "1.0.0",
"description": "Full fledged app made with Next.JS and MongoDB",
"main": "index.js",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --runInBand --detectOpenHandles"
},
"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": {
"@emotion/cache": "^11.10.7",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.126",
"@mui/material": "^5.12.0",
"@vercel/analytics": "^1.0.0",
"ajv": "^8.12.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^1.36.2",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"express-session": "^1.17.3",
"mongoose": "^7.0.4",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"next": "^13.3.1",
"next-connect": "^1.0.0-next.3",
"next-session": "^4.0.5",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"slug": "^8.2.2",
"swr": "^2.1.5",
"validator": "^13.9.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addons": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/react-webpack5": "^7.0.6",
"@swc/core": "^1.3.52",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2",
"prettier": "^2.8.7",
"storybook": "^7.0.6",
"storybook-addon-next-router": "^4.0.2",
"storybook-addon-swc": "^1.2.0"
}
}