Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tuonghuynh11 committed Jan 26, 2024
2 parents 7c4fe67 + 2f4930d commit d0604e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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": "SET 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:dev": "NODE_ENV=development 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 d0604e0

Please sign in to comment.