You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{ "name": "express-ts", "version": "1.0.0", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "ts-node src/index.ts", "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts", "build": "tsc", "serve": "node dist/index.js" }, "keywords": [], "author": "", "license": "ISC", "description": "", "dependencies": { "express": "^5.0.1", "ws": "^8.18.1" }, "devDependencies": { "@types/express": "^5.0.0", "@types/node": "^22.13.4", "@types/ws": "^8.5.14", "nodemon": "^3.1.9", "ts-node": "^10.9.2", "typescript": "^5.7.3" } }
|