-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "webnote",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"moment": "^2.24.0",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"react-router-dom": "^5.1.2"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server",
"client": "cd client && npm start",
"client-install": "cd client && npm install",
"dev": "concurrently \"nodemon server\" \"npm run client\"",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run client-install && npm run build"
},
"keywords": [],
"author": "Jannat",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/pateljannat/WebNotes.git"
},
"bugs": {
"url": "https://github.com/pateljannat/WebNotes/issues"
},
"homepage": "https://github.com/pateljannat/WebNotes#readme",
"description": "A note making application build using MERN stack."
}