v.0.9.0 setup skeleton package.json debugger

This commit is contained in:
TiiJay
2024-11-27 17:46:32 +01:00
parent 681344ec1e
commit c8ef9e7a2c
4 changed files with 111 additions and 31 deletions

View File

@@ -1,17 +1,25 @@
{
"name": "backtracking",
"version": "0.0.1",
"version": "0.9.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"build": "concurrently -c \"green.bold,yellow.bold,red.bold,blue.bold\" 'npm:build-*'",
"build-backtracking-lib": "nest build backtracking-lib",
"build-backtracking": "nest build backtracking",
"build-n-dame-problem": "nest build n-dame-problem",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/apps/backtracking/main",
"start:dev": "concurrently -c \"green.bold,yellow.bold\" 'npm:dev-*'",
"dev-backtracking": "cross-env NODE_ENV=dev nest start --watch backtracking",
"dev-n-dame-problem": "cross-env NODE_ENV=dev nest start --watch n-dame-problem",
"start:debug": "concurrently -c \"green.bold,yellow.bold\" 'npm:debug-*'",
"debug-backtracking": "cross-env NODE_ENV=dev nest start --watch --debug 9230 backtracking",
"debug-n-dame-problem": "cross-env NODE_ENV=dev nest start --watch --debug 9231 n-dame-problem",
"start:prod": "concurrently -c \"green.bold,yellow.bold\" 'npm:prod-*'",
"prod-backtracking": "cross-env NODE_ENV=prod node dist/apps/backtracking/main.js",
"prod-n-dame-problem": "cross-env NODE_ENV=prod node dist/apps/n-dame-problem/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
@@ -23,6 +31,8 @@
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
@@ -73,4 +83,4 @@
"^@app/backtracking-lib(|/.*)$": "<rootDir>/libs/backtracking-lib/src/$1"
}
}
}
}