-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
{
"name": "getthebest",
"version": "1.0.0",
"description": "MERN stack app for fun",
"main": "app.js",
"scripts": {
"test": "nodemon --exec 'mocha -R min'",
"start": "node app.js",
"server": "nodemon app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"seed": "node scripts/seedDB.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkyisAakash/getTheBest.git"
},
"author": "Aakash Sarang",
"license": "ISC",
"bugs": {
"url": "https://github.com/SkyisAakash/getTheBest/issues"
},
"homepage": "https://github.com/SkyisAakash/getTheBest#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mocha": "^5.2.0",
"mongoose": "^5.2.10",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"validator": "^10.7.0"
},
"devDependencies": {
"nodemon": "^1.18.3"
},
"engines": {
"node": "8.9.0"
}
}