-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 906 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
28
29
30
31
32
33
34
{
"name": "mern-crud",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"frontend": "cd frontend && npm run start",
"mern-stack": "nodemon index --ignore frontend/",
"dev": "concurrently \"npm run frontend\" \"npm run mern-stack\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeepshikaS/mern-crud.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DeepshikaS/mern-crud/issues"
},
"homepage": "https://github.com/DeepshikaS/mern-crud#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"nodemon": "^2.0.4"
}
}