-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 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
47
48
{
"name": "movie-match",
"version": "1.0.0",
"description": "backend for movie match app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleksandraZochowska/CodersCamp2020.Project.FullStack-Node-React.MovieMatch.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AleksandraZochowska/CodersCamp2020.Project.FullStack-Node-React.MovieMatch/issues"
},
"homepage": "https://github.com/AleksandraZochowska/CodersCamp2020.Project.FullStack-Node-React.MovieMatch#readme",
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^1.19.4",
"supertest": "^6.1.3"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-fileupload": "^1.1.6-alpha.6",
"helmet": "^3.21.2",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.3",
"mongoose": "^5.11.18",
"nanoid": "^3.1.21",
"nodemailer": "^6.5.0"
}
}