-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "newsapp",
"version": "1.0.0",
"description": "A news Paper management App",
"main": "index.js",
"engines" : {
"node" : "12.13.1",
"npm" : "6.12.1"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Saad Awan",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"concurrently": "^4.1.2",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"materialize-css": "^1.0.0-rc.2",
"mongoose": "^5.7.3",
"mongoose-timestamp": "^0.6.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"react-router-config": "^5.1.1"
},
"devDependencies": {
"faker": "^4.1.0"
}
}