Remove production from prod script

This commit is contained in:
advplyr 2021-09-19 20:38:24 -05:00
parent 9e8ea43d5b
commit 9e668bbf35

View File

@ -5,8 +5,8 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"dev": "node index.js", "dev": "node index.js",
"client": "cd client && npm install --production && npm run generate", "client": "cd client && npm install && npm run generate",
"prod": "npm run client && npm install --production && node prod.js", "prod": "npm run client && npm install && node prod.js",
"start": "node prod.js" "start": "node prod.js"
}, },
"author": "advplyr", "author": "advplyr",