added logger
This commit is contained in:
47
package.json
Normal file
47
package.json
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
"name": "anthill-pot",
|
||||
"version": "0.1.0",
|
||||
"description": "Anthill Backup Pot",
|
||||
"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",
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"lint": "eslint --fix --ext ts src/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.joshua-schnabel.de/joshua_schnabel/anthill-pot.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Backup",
|
||||
"Sync",
|
||||
"Storage"
|
||||
],
|
||||
"author": "Joshua Schnabel",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@gquittet/graceful-server": "^2.5.2",
|
||||
"fastify": "^3.25.3",
|
||||
"fastify-sensible": "^3.1.2",
|
||||
"winston": "^3.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node16": "^1.0.2",
|
||||
"@types/node": "^17.0.9",
|
||||
"@types/triple-beam": "^1.3.2",
|
||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
||||
"@typescript-eslint/parser": "^5.10.0",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-plugin-promise": "^6.0.0",
|
||||
"eslint-plugin-unused-imports": "^2.0.0",
|
||||
"ts-node": "^10.4.0",
|
||||
"typescript": "^4.5.4"
|
||||
},
|
||||
"_moduleAliases": {
|
||||
"@logger/*": "./dist/logger/*"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user