-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 888 Bytes
/
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
{
"name": "notekeeper",
"version": "1.0.0",
"description": "Full stack note keeper build with React & Node.",
"main": "server.js",
"type": "module",
"scripts": {
"setup-production": "npm run build-client && npm install",
"build-client": "cd client && npm install && npm run build",
"install-dependencies": "npm install && cd client && npm install",
"start": "node server.js",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "shubham",
"license": "ISC",
"dependencies": {
"colors": "^1.4.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"mongoose": "^6.8.0",
"morgan": "^1.10.0"
}
}