Skip to content

Commit

Permalink
Fix script that starts dev server
Browse files Browse the repository at this point in the history
  • Loading branch information
erikao1998 committed Aug 29, 2024
1 parent f0f8a05 commit 1662e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"start:test": "NODE_ENV=test node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/server/index.ts",
"start:dev": "NODE_ENV=development concurrently \"npm run start:dev:server\" \"npm run start:dev:front\"",
"start:dev:front": "vite",
"start:dev:server": "NODE_ENV=development --no-warnings --experimental-specifier-resolution=node ts-node/esm src/server/index.ts",
"start:dev:server": "NODE_ENV=development node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/server/index.ts",
"test": "npx playwright test",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write '*.{ts,tsx,json,css,md}'",
Expand Down

0 comments on commit 1662e21

Please sign in to comment.