-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "marketplace-api",
"version": "1.0.0",
"description": "A Marketplace REST Api developed in NodeJS",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js -e js",
"lint": "./node_modules/.bin/eslint ./src --ext .js"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaaoeu/marketplace-api.git"
},
"keywords": [
"JavaScript",
"Node",
"MongoDB",
"Mongoose",
"REST",
"API"
],
"author": "João Vitor Barbosa Brandão <hello@joaao.eu> (https://www.joaao.eu/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaaoeu/marketplace-api/issues"
},
"homepage": "https://github.com/joaaoeu/marketplace-api#readme",
"devDependencies": {
"eslint": "^5.15.2",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"nodemon": "^1.18.10"
},
"dependencies": {
"@sentry/node": "^4.6.4",
"bcryptjs": "^2.4.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-validation": "^1.0.2",
"extend": ">=2.0.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.0",
"kue": "^0.11.6",
"mongoose": "^5.4.19",
"mongoose-paginate": "^5.0.3",
"nodemailer": "^5.1.1",
"nodemailer-express-handlebars": "^3.0.0",
"require-dir": "^1.2.0",
"youch": "^2.0.10"
}
}