{ "name": "blog", "version": "0.0.3", "type": "module", "description": "A weblog by Seth Lakowske", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "./node_modules/.bin/tsc", "watch": "./node_modules/.bin/tsc --watch", "watchAndDump": "./node_modules/.bin/nodemon --watch ./public --ext js,html,css --exec \"npm run dump\"", "serve": "(cd ./dist; PORT=8090 node server.js serve)", "dump": "(cd ./dist; node server.js dump)" }, "repository": { "type": "git", "url": "https://github.com/lakowske/Blog" }, "keywords": [ "blog" ], "author": "Seth Lakowske", "license": "All rights reserved", "bugs": { "url": "https://github.com/lakowske/Blog/issues" }, "homepage": "https://github.com/lakowske/Blog", "dependencies": { "dotenv": "^16.4.5", "jsdom": "^21.0.0", "mime": "^3.0.0" }, "devDependencies": { "@types/node": "^20.12.4", "nodemon": "^3.1.0", "typescript": "^5.4.3" } }