-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "notes-app",
"version": "1.0.0",
"description": "Notes app built with the MERN stack.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm run start",
"client-install": "cd client && npm install",
"server-install": "npm install",
"install-all": "concurrently \"npm run client-install\" \"npm run server-install\" ",
"dev": "concurrently \"npm run client\" \"npm run server\" ",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "Shreyas",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.27",
"react-twitter-embed": "^3.0.3",
"semantic-ui-react": "^2.0.1",
"socket.io": "^3.0.3"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}