Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-slug-id
Browse files Browse the repository at this point in the history
  • Loading branch information
sidemt authored Nov 7, 2023
2 parents a6e93de + 4fee608 commit 88a4914
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
3 changes: 2 additions & 1 deletion apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"strapi": "strapi",
"seed": "node ./scripts/seed.js",
"cs": "config-sync",
"init": "cp --no-clobber sample.env .env && npm run cs import -- --yes",
"init": "shx cp -n sample.env .env && npm run cs import -- --yes",
"test": "jest --forceExit",
"test-verbose": "jest --forceExit --detectOpenHandles --verbose"
},
Expand Down Expand Up @@ -46,6 +46,7 @@
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"shx": "^0.3.4",
"supertest": "^6.3.3"
}
}
3 changes: 2 additions & 1 deletion apps/cron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts # don't create a develop script unless you want turbo develop to start it",
"init": "cp --no-clobber sample.env .env",
"init": "shx cp -n sample.env .env",
"prettier-check": "prettier --check .",
"start": "NODE_ENV=production node prod/index.js",
"type-check": "tsc --noEmit"
Expand All @@ -17,6 +17,7 @@
"devDependencies": {
"@types/node": "^20.8.8",
"nodemon": "^3.0.1",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
Expand Down
5 changes: 3 additions & 2 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "next dev",
"develop": "npm run dev",
"eslint": "next lint",
"init": "cp --no-clobber sample.env .env",
"init": "shx cp -n sample.env .env",
"prettier-check": "prettier --check .",
"start": "next start"
},
Expand Down Expand Up @@ -53,6 +53,7 @@
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.1"
"prettier": "^3.0.1",
"shx": "^0.3.4"
}
}
23 changes: 21 additions & 2 deletions package-lock.json

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

0 comments on commit 88a4914

Please sign in to comment.