Fix install.js

This commit is contained in:
Lorenzo Iovino 2024-01-20 10:13:43 +01:00
parent 0ddea7c1c6
commit 434d53e034
4 changed files with 49 additions and 7 deletions

21
package-blank.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "node-base-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/main.js",
"build": "tsc -p tsconfig.json",
"build+start": "npm run build && npm run start",
"build:watch": "tsc -w -p tsconfig.json",
"test:watch": "node --import tsx --test --watch **/*.spec.ts",
"test": "node --import tsx --test **/*.spec.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}