25 lines
812 B
JSON
25 lines
812 B
JSON
{
|
|
"name": "node-base",
|
|
"version": "1.0.0",
|
|
"description": "Very Simple nodejs boilerplate (with TS)",
|
|
"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:watch:only": "node --import tsx --test --test-only --watch **/**/*.spec.ts",
|
|
"test": "node --import tsx --test **/**/*.spec.ts",
|
|
"test:only": "node --import tsx --test --test-only **/**/*.spec.ts"},
|
|
"bin": {
|
|
"node-base": ".bin/install.js"
|
|
},
|
|
"author": "Lorenzo Iovino",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.5",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|