forked from tylermwatts/project-MERN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 870 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
{
"name": "project-mern",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hellrungj/project-MERN.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hellrungj/project-MERN/issues"
},
"homepage": "https://github.com/Hellrungj/project-MERN#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^3.5.1",
"dotenv": "^8.0.0",
"express": "^4.16.2",
"node-fetch": "^2.6.0",
"nodemon": "^1.14.7"
}
}