-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "icinema",
"version": "1.0.0",
"description": "Website for movie theaters.",
"main": "server.js",
"type": "module",
"scripts": {
"setup": "npm install && npm run setup-frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"start": "node server.js",
"server": "nodemon server.js",
"frontend": "cd ./frontend && npm start",
"setup-frontend": "cd frontend && npm install",
"build-frontend": "npm run setup-frontend && cd frontend && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run build-frontend"
},
"author": "Orif Milod",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.37.1",
"concurrently": "^3.6.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"gravatar": "^1.8.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"node-fetch": "^2.6.0",
"nodemailer": "^6.9.9",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"redis": "^3.1.1",
"validator": "^13.7.0",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"engines": {
"node": "10.14.2"
}
}