Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
BoscoDomingo committed May 25, 2023
1 parent e50986d commit fa842dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "typescript-api-skeleton",
"version": "1.1.0",
"version": "2.0.2",
"description": "A simple TypeScript skeleton for easy tasks. For anything more complex, a DDD structure is recommended.",
"main": "server.ts",
"main": "src/server.ts",
"scripts": {
"start": "node ./dist/src/server.js",
"dev": "ts-node-dev --rs --transpile-only ./src/server.ts",
"dev:debug": "ts-node-dev --inspect --rs --transpile-only ./src/server.ts",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint": "eslint --ignore-path .gitignore . --ext .ts --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src test --check",
"prettier": "npx prettier src test --check --no-error-on-unmatched-pattern",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "jest --verbose --detectOpenHandles"
Expand Down

0 comments on commit fa842dd

Please sign in to comment.