-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 894 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 894 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
{
"name": "mern-notesapp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"start": "node backend/server.js"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@tiptap/extension-image": "^3.15.3",
"@tiptap/extension-link": "^3.15.3",
"@tiptap/extension-placeholder": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"bcryptjs": "^3.0.2",
"dotenv": "^17.0.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"linkify-react": "^4.3.2",
"mongoose": "^8.16.1",
"nodemailer": "^7.0.4",
"path-to-regexp": "^8.2.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}