forked from Elliotmrgn/Lokal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "reactreadinglist-auth-server",
"version": "1.1.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 && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"seed": "node server/seeders/seed.js"
},
"engines": {
"node": "12.14.1",
"npm": "6.11.3",
"yarn": "1.22.4"
},
"author": "",
"license": "ISC",
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"@react-google-maps/api": "^1.9.8",
"axios": "^0.19.2",
"bcrypt": "^3.0.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.0",
"cloudinary": "^1.22.0",
"cloudinary-react": "^1.6.2",
"concurrently": "^5.2.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"emailjs-com": "^2.6.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"firebase": "^7.17.1",
"if-env": "^1.0.4",
"mongoose": "^5.9.14",
"mongoose-data-seed": "^2.1.6",
"morgan": "^1.10.0",
"nodemailer": "^6.4.10",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-awesome-slider": "^4.1.0",
"react-bootstrap": "^1.2.2",
"react-functional-select": "^2.6.0",
"react-google-maps": "^9.4.5",
"react-icons": "^3.10.0",
"react-scripts": "^3.4.1",
"react-select": "^3.1.0",
"react-transition-group": "^4.4.1",
"react-window": "^1.8.5",
"recompose": "^0.30.0",
"styled-components": "^5.1.1",
"yarn": "^1.22.4"
}
}