-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "StoryBooks",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"prod_backend": "cd backend && cross-env NODE_ENV=production node app",
"dev_backend": "cd backend && cross-env NODE_ENV=development nodemon app",
"prod_frontend": "cd client && npm run build",
"dev_frontend": "cd client && npm start",
"prod": "concurrently \"npm run prod_backend\" \"npm run prod_frontend\"",
"dev": "concurrently \"npm run dev_backend\" \"npm run dev_frontend\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.3",
"connect-mongo": "^4.2.2",
"create-react-app": "^4.0.3",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^5.11.18",
"mongoose-findorcreate": "^3.0.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.7"
}
}