{ "name": "node-express-api-ts", "description": "Simple api sample in Node", "version": "1.0.0", "private": true, "main": "index.js", "scripts": { "dev": "nodemon --watch 'src/**' --ext 'ts,json' --exec 'npm run build && npm run start'", "build": "tsc", "start": "node dist/index.js" }, "author": "Google LLC", "license": "Apache-2.0", "dependencies": { "express": "^4.21.2" }, "devDependencies": { "nodemon": "^3.1.0", "typescript": "^5.4.5", "@types/node": "^20.12.12" } }