-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.2 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
80
81
{
"name": "blogs",
"version": "0.1.0",
"description": "Next.js Blog | Secure & Serverless with MongoDB & iron-session",
"author": "Vidit Kushwaha <[email protected]> (https://viditkushwaha.com/)",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "cross-env NODE_ENV=production && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vidit-Kushwaha/Blog.git"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"fuse.js": "^7.0.0",
"iron-session": "^8.0.1",
"matter-js": "^0.19.0",
"mongoose": "^8.0.4",
"next-pwa": "^5.6.0",
"nodemailer": "^6.9.13",
"p5": "^1.9.2",
"react": "^18",
"react-dom": "^18",
"react-hooks-global-state": "^2.1.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.4",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.69.7",
"sharp": "^0.33.1",
"swr": "^2.2.4"
},
"devDependencies": {
"@headlessui/react": "^1.7.17",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/matter-js": "^0.19.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/p5": "^1.7.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.11",
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"next": "14.0.4",
"postcss": "^8",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"next lint"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}