chore: add start command

Signed-off-by: Hanif Dwy Putra S <hanifdwyputrasembiring@gmail.com>
This commit is contained in:
Hanif Dwy Putra S
2022-10-01 03:43:15 +00:00
parent e2302be434
commit 952fdac385
4 changed files with 11 additions and 3 deletions

3
.gitignore vendored
View File

@@ -9,3 +9,6 @@ package-lock.json
.yarn/patches .yarn/patches
.yarn/*.gz .yarn/*.gz
*.rdb *.rdb
# Local Netlify folder
.netlify

View File

@@ -18,7 +18,8 @@
"build": "next build", "build": "next build",
"dev": "next dev", "dev": "next dev",
"lint": "next lint", "lint": "next lint",
"format": "prettier . --write" "format": "prettier . --write",
"start": "next start"
}, },
"devDependencies": { "devDependencies": {
"@next/eslint-plugin-next": "12.2.4", "@next/eslint-plugin-next": "12.2.4",

View File

@@ -17,7 +17,8 @@
"dev": "turbo run dev --parallel", "dev": "turbo run dev --parallel",
"lint": "turbo run lint --parallel", "lint": "turbo run lint --parallel",
"format": "turbo run format --parallel", "format": "turbo run format --parallel",
"prepare": "husky install" "prepare": "husky install",
"start": "turbo run start"
}, },
"packageManager": "yarn@3.2.2", "packageManager": "yarn@3.2.2",
"engines": { "engines": {

View File

@@ -12,6 +12,9 @@
"dev": { "dev": {
"cache": false "cache": false
}, },
"format": {} "format": {},
"start": {
"cache": false
}
} }
} }