-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"homepage": "https://Mehak-Mattoo.github.io/note-taking-site",
"name": "notezen",
"version": "1.0.0",
"description": "note taking website",
"main": "server.js",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon backend/app.js",
"start": "nodemon backend/app.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm start\" \"npm run client\"",
"build": "npm install && npm install --prefix frontend && npm run build"
},
"author": "Mehak",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"gh-pages": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.1.0",
"mongoose": "^7.5.2",
"nodemon": "^3.0.1",
"react-markdown": "^8.0.7",
"react-router-bootstrap": "^0.25.0"
}
}