ente/package.json
2024-02-17 13:18:34 +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.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56",
"prettier": "2.3.2",
"typescript": "^5.1.3"
}
}