-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "reactreadinglist-auth-server",
"version": "1.0.0",
"description": "Full Stack React App with Authentication",
"main": "server/server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client --ignore-engines && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "10.16.3",
"npm": "5.6.x",
"yarn": "1.4.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"@material-ui/core": "^4.7.1",
"axios": "^0.18.0",
"bcrypt": "^3.0.2",
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.1.2",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"google-maps-react": "^2.0.2",
"if-env": "^1.0.4",
"mongoose": "^5.3.4",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.7.2",
"react-autosuggest": "^9.4.3",
"throttle-debounce": "^2.1.0"
}
}