This commit is contained in:
Luke Vella 2024-10-13 18:58:56 +01:00
parent 04257844b9
commit a21406e570
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
3 changed files with 4 additions and 5 deletions

View file

@ -65,7 +65,7 @@ jobs:
sudo apt-get update
- name: Install playwright dependencies
run: pnpm playwright install --with-deps chromium
run: npx playwright install --with-deps chromium
- name: Create production build
run: pnpm turbo build:test --filter=@rallly/web

View file

@ -35,10 +35,10 @@
"@prisma/client": "^5.20.0",
"framer-motion": "^10.16.4",
"next": "^14.2.13",
"prisma": "^5.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"prisma": "^5.20.0",
"zod": "^3.23.8"
},
"devDependencies": {
@ -51,8 +51,8 @@
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.4",
"turbo": "^2.1.1",
"wait-on": "^6.0.1",
"vitest": "^2.1.1"
"vitest": "^2.1.1",
"wait-on": "^6.0.1"
},
"engines": {
"node": "20.x"

View file

@ -4,7 +4,6 @@
"private": true,
"scripts": {
"dev": "email dev --port 3333 --dir ./src/previews",
"lint": "eslint ./src",
"type-check": "tsc --pretty --noEmit",
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js"
},