Improve package.json

This commit is contained in:
Marko Korhonen 2023-11-11 17:11:31 +02:00
parent 5726f76b3a
commit 409c6c2739
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -1,13 +1,19 @@
{ {
"name": "work_time_calculator", "$schema": "https://json.schemastore.org/package.json",
"name": "work-time-calculator",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"private": true,
"type": "module", "type": "module",
"main": "src/main.ts",
"scripts": { "scripts": {
"build": "tsc" "build": "tsc"
}, },
"author": "Marko Korhonen", "keywords": [
"work",
"time",
"calculator"
],
"author": "Marko Korhonen <marko@korhonen.cc>",
"devDependencies": { "devDependencies": {
"@types/node": "^20.9.0", "@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0", "@typescript-eslint/eslint-plugin": "^6.10.0",
@ -17,8 +23,6 @@
}, },
"dependencies": { "dependencies": {
"chalk": "^5.3.0", "chalk": "^5.3.0",
"dayjs": "^1.11.10", "dayjs": "^1.11.10"
"nodemailer": "^6.9.7",
"pg": "^8.11.3"
} }
} }