Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tuonghuynh11 authored Jan 25, 2024
1 parent 5c419f9 commit 2f4930d
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
Expand Up @@ -5,12 +5,12 @@
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development npx nodemon",
"dev:stag": "SET NODE_ENV=staging & npx nodemon",
"dev:prod": "SET NODE_ENV=production & npx nodemon",
"dev:stag": "NODE_ENV=staging npx nodemon",
"dev:prod": "NODE_ENV=production npx nodemon",
"build": "rimraf ./dist && tsc && tsc-alias",
"start:dev": "NODE_ENV=development node dist/index.js",
"start:stag": "SET NODE_ENV=staging & node dist/index.js",
"start:prod": "SET NODE_ENV=production & node dist/index.js",
"start:stag": "NODE_ENV=staging node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
Expand Down

0 comments on commit 2f4930d

Please sign in to comment.