initial commit

This commit is contained in:
Niels Kooiman
2019-08-12 12:52:12 +02:00
parent cc94057ac7
commit 352211dfcf
29 changed files with 2303 additions and 11 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "@nx/typescript-domain",
"version": "1.0.0",
"description": "Project for a Domain Driven typescript app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pkg-update": "node pkg-update",
"build": "tsc",
"_build": "tsc --listEmittedFiles",
"test": "jasmine-ts --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "https://solidt.eu/git/niels.kooiman/typescript-domain.git"
},
"author": "Niels Kooiman <niels.kooiman@gmail.com>",
"license": "UNLICENCED",
"devDependencies": {
"@types/jasmine": "^3.3.9",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"jasmine-ts": "^0.3.0",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"dependencies": {}
}