added first domain model
This commit is contained in:
31
package.json
31
package.json
@ -5,12 +5,13 @@
|
||||
"main": "server.ts",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "node --no-warnings --loader ./src/myloader.mjs --experimental-modules --es-module-specifier-resolution=node ./dist/server.js",
|
||||
"dev": "node --no-warnings --loader ./src/myloader.mjs --experimental-modules --es-module-specifier-resolution=node ./src/server.ts start --port 1234",
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"start": "node ./dist/app.js",
|
||||
"dev": "cross-env TS_NODE_COMPILER=ttypescript node --no-warnings --loader ./src/myloader.mjs --experimental-modules --es-module-specifier-resolution=node ./src/app.ts",
|
||||
"build": "ttsc -p tsconfig.json && tsc-alias -p tsconfig.json",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"lint": "eslint --fix --ext ts src/",
|
||||
"upgrade": "yarn upgrade --latest"
|
||||
"upgrade": "yarn upgrade --latest",
|
||||
"xxx": "node --loader ts-node/esm ./src/test.ts"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -24,29 +25,43 @@
|
||||
"author": "Joshua Schnabel",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@automapper/classes": "^8.3.0",
|
||||
"@automapper/core": "^8.3.0",
|
||||
"@gquittet/graceful-server": "^2.5.2",
|
||||
"@nestjs/common": "^8.4.3",
|
||||
"@nestjs/core": "^8.4.3",
|
||||
"@nestjs/passport": "^8.2.1",
|
||||
"@nestjs/platform-fastify": "^8.4.3",
|
||||
"args-command-parser": "^1.2.4",
|
||||
"eslint-import-resolver-alias": "^1.1.2",
|
||||
"cli-color": "^2.0.1",
|
||||
"fastify": "^3.25.3",
|
||||
"fastify-plugin": "^3.0.0",
|
||||
"fastify-sensible": "^3.1.2",
|
||||
"passport": "^0.5.2",
|
||||
"passport-http": "^0.3.0",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rxjs": "^7.5.5",
|
||||
"winston": "^3.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node16": "^1.0.2",
|
||||
"@types/cli-color": "^2.0.2",
|
||||
"@types/node": "^17.0.9",
|
||||
"@types/passport": "^1.0.7",
|
||||
"@types/passport-http": "^0.3.9",
|
||||
"@types/triple-beam": "^1.3.2",
|
||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
||||
"@typescript-eslint/parser": "^5.10.0",
|
||||
"builder-pattern": "^1.3.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-import-resolver-alias": "^1.1.2",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-plugin-promise": "^6.0.0",
|
||||
"eslint-plugin-unused-imports": "^2.0.0",
|
||||
"ts-node": "^10.4.0",
|
||||
"tsc-alias": "^1.6.6",
|
||||
"ttypescript": "^1.5.13",
|
||||
"typescript": "^4.5.4"
|
||||
},
|
||||
"_moduleAliases": {
|
||||
"@logger/*": "./dist/logger/*"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user