29 lines
679 B
JSON
29 lines
679 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@lifetracker/shared",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@date-fns/tz": "^1.2.0",
|
|
"date-fns": "^4.1.0",
|
|
"winston": "^3.17.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@lifetracker/eslint-config": "workspace:^",
|
|
"@lifetracker/typescript-config": "workspace:^"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint ."
|
|
},
|
|
"main": "index.ts",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@lifetracker/eslint-config/base"
|
|
]
|
|
}
|
|
} |