chapter-tracker/package.json
pfych 040b427d97
All checks were successful
Build and Push Container / build (push) Successful in 1m1s
Reduce docker container size by ~100MB
2025-04-30 19:24:18 +10:00

42 lines
1.2 KiB
JSON

{
"name": "chapter-tracker",
"version": "1.0.0",
"description": "",
"main": "./out/build.js",
"scripts": {
"compile": "esbuild src/index.ts --bundle --outfile=.out/build.js --minify --sourcemap --platform=node --external:esbuild",
"compile:watch": "esbuild src/index.ts --bundle --outfile=.out/build.js --sourcemap --platform=node --external:esbuild --watch",
"run": "node .out/build.js",
"run:watch": "node --watch .out/build.js",
"lint": "eslint src --ext .ts",
"check": "tsc --noEmit"
},
"keywords": [],
"author": "pfych <contact@pfy.ch>",
"license": "MIT",
"packageManager": "pnpm@10.7.1",
"dependencies": {
"axios": "1.8.4",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/lodash-es": "4.17.12",
"@types/node": "22.14.1",
"esbuild": "0.25.2",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.5.3",
"typescript": "5.8.3"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 80
}
}