-
Notifications
You must be signed in to change notification settings - Fork 311
/
package.json
114 lines (114 loc) · 2.94 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "generator-rest",
"version": "0.17.0",
"description": "RESTful API generator using NodeJS, Express and MongoDB. Watch https://youtu.be/6x-ijyG-ack",
"homepage": "https://github.com/diegohaz/generator-rest",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"rest",
"rest-api",
"restful",
"node",
"nodejs",
"express",
"mongo",
"mongodb",
"mongoose",
"passport",
"ava",
"api",
"es6",
"babel",
"generator",
"yeoman"
],
"dependencies": {
"babel-eslint": "^10.1.0",
"bluebird": "^3.7.2",
"chalk": "^1.0.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-standard": "^2.3.1",
"lodash": "^4.15.0",
"pluralize": "^3.0.0",
"rand-token": "^0.4.0",
"recast": "^0.11.13",
"reserved-words": "^0.1.1",
"yeoman-generator": "^0.24.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-export-default-from": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"bodymen": "^1.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"express-force-ssl": "^0.3.2",
"fs-extra": "^0.30.0",
"gulp": "^4.0.2",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^6.0.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-istanbul": "^1.1.3",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^1.2.1",
"jest-cli": "^25.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^6.3.3",
"mongoose": "^5.9.4",
"mongoose-keywords": "^0.4.0",
"morgan": "^1.9.1",
"nock": "^12.0.2",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"querymen": "^2.1.4",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"@sendgrid/mail": "^6.5.4",
"sinon": "^4.0.1",
"supertest": "^4.0.2",
"yeoman-assert": "^2.0.0",
"yeoman-test": "^1.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "diegohaz/generator-rest",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"license": "MIT"
}