TS-TEST/package.json

23 lines
507 B
JSON

{
"name": "ts-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npx nodemon",
"build": "rimraf ./build && tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^22.15.30",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}