-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "generator-typescript-microservice",
"version": "5.4.9",
"description": "A NodeJS generator for Node/TypeScript which leverages the Serverless framework to be deployable to all the major cloud platforms",
"license": "MIT",
"repository": "https://github.com/lifegadget/generator-typescript-microservice",
"author": {
"name": "Ken Snyder",
"email": "[email protected]",
"url": "https://github.com/ksnyde"
},
"files": [
"generators"
],
"scripts": {
"build": "run-p build:*",
"build:templates": "sync-glob templates/** 'generators/app/templates'",
"build:tsc": "tsc",
"watch": "run-p watch:*",
"watch:templates": "sync-glob --watch 'templates/**' 'generators/app/templates'",
"watch:tsc": "tsc -w",
"test": "node_modules/.bin/tsc && node_modules/.bin/mocha --exit --require ts-node/register test/test-app.ts"
},
"keywords": [
"yeoman-generator",
"typescript",
"nodejs",
"lambda",
"serverless",
"aws"
],
"dependencies": {
"async-shelljs": "^0.1.4",
"chalk": "^4.0.0",
"common-types": "^1.14.4",
"handlebars": "^4.7.6",
"inquirer": "^7.1.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"simple-git": "^2.5.0",
"sync-glob": "^1.4.0",
"yeoman-generator": "^4.10.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.5",
"@types/rimraf": "^0.0.28",
"@types/yeoman-generator": "^3.1.4",
"@types/yeoman-test": "^2.0.3",
"@types/yosay": "^0.0.29",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"coveralls": "^3.1.0",
"faker": "^4.1.0",
"lodash.first": "^3.0.0",
"lodash.last": "^3.0.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"test-console": "^1.1.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"yeoman-test": "^2.5.0"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}