UNPKG
@danhu90/work-template-cli
Version:
latest (1.0.3)
1.0.3
1.0.2
A CLI to bootstrap my projects
github.com/danhu90/work-template-cli
danhu90/work-template-cli
@danhu90/work-template-cli
/
templates
/
gql-ts-prisma-codegen-apolloserver
/
nodemon.json
10 lines
•
227 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
{
"watch"
:
[
"src"
]
,
"ext"
:
"ts,js,json"
,
"ignore"
:
[
"node_modules"
,
"coverage"
,
"dist"
]
,
"exec"
:
"ts-node -r tsconfig-paths/register ./src/index.ts"
,
"restartable"
:
"rs"
,
"env"
:
{
"NODE_ENV"
:
"development"
}
}