UNPKG

express-generator-typescript-k8s

Version:

Generate a new Express applications similar to express-generate with Kubernetes client and Typescript configured.

23 lines (22 loc) 582 B
{ "name": "express-gen-ts-k8s", "version": "0.0.0", "scripts": { "build": "node build.js", "lint": "tslint --project \"tsconfig.json\"", "start": "node -r module-alias/register ./dist --env=production", "start:dev": "nodemon", "test": "nodemon --config ./spec/nodemon.json" }, "nodemonConfig": { "watch": ["src"], "ext": "ts, html", "ignore": ["src/public"], "exec": "ts-node -r tsconfig-paths/register ./src" }, "_moduleAliases": { "@entities": "dist/entities", "@shared": "dist/shared", "@server": "dist/Server" } }