-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.32 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
{
"name": "generator-wilbur",
"description": "Yeoman generator to quick-start NodeJS + ExpressJS+ MongoDB application development with loads of features (written in TypeScript 3.x)",
"version": "0.0.7",
"repository": {
"url": "https://github.com/alexbatis/generator-wilbur"
},
"main": "generators/app/index.js",
"files": [
"app",
"router",
"add-class",
"boilerplate",
"constants",
"models",
"remove-class",
"services",
"utils",
"src",
"generators",
"templates"
],
"keywords": [
"node",
"nodejs",
"express",
"expressjs",
"typescript",
"api",
"mongo",
"mongodb",
"mongoose",
"typegoose",
"yeoman",
"yeoman-generator",
"wilbur"
],
"dependencies": {
"chalk": "^2.1.0",
"class-validator": "^0.9.1",
"concurrently": "^4.0.1",
"directory-exists": "^2.0.1",
"json2typescript": "^1.0.6",
"rmfr": "^2.0.0",
"uuid": "^3.3.2",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"devDependencies": {
"@types/node": "^10.11.4",
"@types/yeoman-generator": "^2.0.3",
"tsc-watch": "^1.0.29",
"typescript": "^3.1.1"
},
"scripts": {
"build": "tsc",
"dev": "tsc-watch"
},
"author": {
"name": "Alex Batis",
"url": "https://github.com/alexbatis"
},
"license": "MIT"
}