-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
189fa0b
commit 65204f9
Showing
2 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
22 changes: 15 additions & 7 deletions
22
tools/plop-templates/infrastructure/template/package.json.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
{ "name": "@echo/infrastructure-{{dashCase name}}", "private": true, "version": | ||
"1.0.0", "description": "Contains the | ||
{{properCase name}} | ||
related infrastructure", "main": "index.js", "scripts": { "lint": "eslint . | ||
--ext ts,tsx --report-unused-disable-directives --max-warnings 0", "typecheck": | ||
"tsc --noEmit" }, "dependencies": { "@echo/core-types": "^1.0.0", "effect": | ||
"^3.5.8" } } | ||
{ | ||
"name": "@echo/infrastructure-{{dashCase name}}", | ||
"private": true, | ||
"version": "1.0.0", | ||
"description": "Contains the {{properCase name}} related infrastructure", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@echo/core-types": "^1.0.0", | ||
"effect": "^3.2.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
{ "name": "@echo/services-{{dashCase name}}", "private": true, "version": | ||
"1.0.0", "description": "Contains the implementation for the | ||
{{properCase name}} | ||
service", "main": "index.js", "scripts": { "lint": "eslint . --ext ts,tsx | ||
--report-unused-disable-directives --max-warnings 0", "typecheck": "tsc | ||
--noEmit" }, "dependencies": { "@echo/core-types": "^1.0.0", "effect": "^3.5.8" | ||
} } | ||
{ | ||
"name": "@echo/services-{{dashCase name}}", | ||
"private": true, | ||
"version": "1.0.0", | ||
"description": "Contains the implementation for the {{properCase name}} service", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@echo/core-types": "^1.0.0", | ||
"effect": "^3.2.8" | ||
} | ||
} |