ente/package.json
Manav Rathi c9bb6d443b Fix yarn workspace photos add foo
This was likely happening because the package versions in the top level
package.json and the eslint-config package.json were different. I've synced them
for now.

> On a longer time frame, the idea is not have such conflicting cases, and
remove mostly all the top level package.json dependencies and for the rest rely
on them solely being in the top level package.json and not duplicated in two
places.
2024-02-21 21:12:11 +05:30

45 lines
1.5 KiB
JSON

{
"name": "ente-web",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build:accounts": "yarn workspace accounts next build",
"build:auth": "yarn workspace auth next build",
"build:cast": "yarn workspace cast next build",
"build:photos": "yarn workspace photos next build",
"dev:accounts": "yarn workspace accounts next dev",
"dev:auth": "yarn workspace auth next dev",
"dev:cast": "yarn workspace cast next dev",
"dev:photos": "yarn workspace photos next dev",
"albums": "yarn workspace photos albums",
"lint": "yarn prettier --check . && yarn workspaces run eslint .",
"lint-fix": "yarn prettier --write . && yarn workspaces run eslint --fix ."
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@ente/accounts": "*",
"@ente/shared": "*",
"@mui/icons-material": "5.14.1",
"@mui/material": "5.11.16",
"axios": "^1.6.0",
"is-electron": "^2.2.2",
"next": "^14.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@ente/eslint-config": "*",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"prettier": "2.3.2",
"typescript": "^5.1.3"
}
}