-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 722 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 722 Bytes
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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "8.11.1",
"npm": "5.6.0"
},
"scripts": {
"start": "cd client & yarn start",
"server": "nodemon server/index.js",
"client": "yarn start",
"dev": "concurrently \"yarn server \" \"yarn client \""
},
"repository": "https://github.com/dkrefta/fullstack-react-node.git",
"author": "Diego Krefta <diego.krefta@gmail.com>",
"license": "MIT",
"dependencies": {
"concurrently": "^3.6.0",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"heroku": "^7.6.1",
"mongoose": "^5.2.3",
"nodemon": "^1.18.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0"
}
}