-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "mern_app",
"version": "1.0.0",
"description": "Application using MERN stack for final CoderAcademy assignment",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon app.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "Hayden Fuller, Jo Dunham, Ewe Lin Loo",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.14",
"mongoose-bcrypt": "^1.6.0",
"mongoose-findorcreate": "^3.0.0",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"http-proxy-middleware": "^0.20.0",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.1",
"concurrently": "^5.0.0"
}
}