Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@

###start
# These are added during the post install and then the gitignore rules removed
.zesty
next.config.js
./next.config.js
zesty.config.json
views/zesty
*/views/zesty
###end

package-lock.json
# zesty.io cache
.zesty

# Logs
logs
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"name": "nextjs-marketing",
"name": "nextjs-v13-starter",
"author": "Zesty.io Platform Inc.",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"sync": "npx @zesty-io/nextjs-sync",
"precommit": "pretty-quick --staged",
"postinstall": "zesty init && npm run sync",
"postinstall": "npm run init",
"lint": "next lint",
"type-check": "tsc --noEmit",
"visualTest": "npx lost-pixel",
"updateBaselines": "npx lost-pixel update"
"updateBaselines": "npx lost-pixel update",
"sync": "npx nextjs-sync",
"init": "zesty init && npx nextjs-sync-create-settings && npx nextjs-sync-create-config && npx nextjs-sync"
},
"dependencies": {
"@emotion/react": "^11.9.0",
Expand Down