-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "movie-match-maker",
"version": "1.0.0",
"description": "Backend for Movie Match Maker. A web app that helps you find movies to watch with your friends.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"client": "npm start --prefix client",
"dev": "concurrently -k \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CS290-Final-Project-Team-24/TinderForMoviesV2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^7.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"joi": "^17.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.2",
"node-fetch": "^3.2.10",
"node-fetch-commonjs": "^3.2.4",
"nodemon": "^2.0.20",
"react": "^16.14.0",
"react-animation": "^1.2.2",
"react-dom": "^16.14.0"
},
"type": "module"
}