adventofcode/2021/05/package.json
2023-11-30 22:36:04 +01:00

20 lines
373 B
JSON

{
"name": "05",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node build/first.js",
"build": "tsc",
"watch": "yarn run build -- -w",
"monitor": "nodemon build/first.js"
},
"dependencies": {
"nodemon": "^2.0.15",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/node": "^16.11.11"
}
}