-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"dev": "NODE_ENV=dev nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platzi-master-captone-team/back-end.git"
},
"keywords": [],
"author": "Juan Sebastián Agudelo @juansacok <juansac.me@gmail.com>",
"contributors": [
"Ruben Hernandez",
"Edward Fernández"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/platzi-master-captone-team/back-end/issues"
},
"homepage": "https://github.com/platzi-master-captone-team/back-end#readme",
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4"
},
"dependencies": {
"@hapi/boom": "^9.1.2",
"@hapi/joi": "^17.1.1",
"ajv": "^8.6.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "0.95.6",
"mongoose": "^5.12.14",
"nodemailer": "^6.6.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-linkedin": "^1.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"pg": "^8.6.0"
}
}