-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "d-play-server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development DEBUG=express:*,app:* nodemon index",
"start": "NODE_ENV=production node index",
"test": "NODE_ENV=test mocha --exit",
"cover": "nyc npm test",
"report": "nyc report --reporter=html && xdg-open coverage/index.html",
"lint": "eslint --fix .",
"doc": "xdg-open https://platzi-dplay.postman.co/collections/9205813-396b8fb3-d1fc-4387-9f9d-0715d4e279b0?version=latest&workspace=7cada816-e424-408b-ae55-ea739bf58050"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omarefg/d-play-server.git"
},
"keywords": [],
"author": "Omar Flores Grimontt <omarefg92@gmail.com> | Jorge Salamanca <jorgelisapa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omarefg/d-play-server/issues"
},
"homepage": "https://github.com/omarefg/d-play-server#readme",
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/joi": "^16.1.7",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.3",
"multer": "^1.4.2",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}