mirror of
https://github.com/frontendnetwork/vegancheck.me
synced 2024-11-13 23:57:09 +00:00
99bec9b99f
- The build is not working with `yarn@berry` - This change pins the version down to `v1.x` - Assumes usage of `volta`, but also makes the fact self-documenting Fixes #279
38 lines
865 B
JSON
38 lines
865 B
JSON
{
|
|
"name": "vegancheck",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start -p 1030",
|
|
"stage": "next start -p 1031",
|
|
"lint": "next lint",
|
|
"test": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"@ericblade/quagga2": "^1.8.2",
|
|
"@types/node": "18.16.2",
|
|
"@types/react": "18.2.0",
|
|
"@types/react-dom": "18.2.1",
|
|
"next": "13.3.1",
|
|
"next-intl": "^2.13.1",
|
|
"next-pwa": "^5.6.0",
|
|
"nookies": "^2.5.2",
|
|
"quagga": "^0.12.1",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"sass": "^1.62.1",
|
|
"typescript": "5.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.33.0",
|
|
"eslint": "8.39.0",
|
|
"eslint-config-next": "^13.3.4",
|
|
"eslint-config-sznm": "^1.1.1"
|
|
},
|
|
"volta": {
|
|
"node": "18.16.0",
|
|
"yarn": "1.22.19"
|
|
}
|
|
}
|