-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 KB
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
{
"name": "dragonball",
"version": "1.0.0",
"description": "Dragon Ball API",
"main": "index.js",
"engines": {
"node": "12.18.3"
},
"scripts": {
"dev": "nodemon server.js",
"start": "pm2 start server.js -i 0 -l logs/server.log",
"test": "mocha",
"eslint": "eslint --ext=js",
"prettier": "prettier --write **/*.{js}"
},
"repository": {
"type": "git",
"url": "https://github.com/wwleak/dragonball.git"
},
"keywords": [
"dragonball",
"dragon",
"ball",
"api",
"rest"
],
"author": "Abraham Cedeno",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.551.0",
"bcrypt": "^3.0.6",
"chalk": "^2.4.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-prettify": "^0.1.1",
"express-rate-limit": "^5.1.3",
"express-validator": "^6.2.0",
"express-winston": "^4.0.5",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"mongodb": "^3.3.2",
"mongoose": "^5.7.5",
"nodemailer": "^6.3.1",
"pm2": "^4.0.0",
"redis": "2.8.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^31.3.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^10.0.0-0",
"mocha": "^6.2.1",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}