Files
ente/web/package.json
2024-03-06 11:58:41 +05:30

38 lines
1.5 KiB
JSON

{
"name": "ente-web",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "yarn build:photos",
"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",
"deploy:accounts": "open 'https://github.com/ente-io/ente/pull/new/deploy/accounts..main'",
"deploy:auth": "open 'https://github.com/ente-io/ente/pull/new/deploy/auth..main'",
"deploy:cast": "open 'https://github.com/ente-io/ente/pull/new/deploy/cast..main'",
"deploy:photos": "open 'https://github.com/ente-io/ente/pull/new/deploy/photos..main'",
"dev": "yarn dev:photos",
"dev:accounts": "yarn workspace accounts next dev",
"dev:albums": "yarn workspace photos next dev -p 3002",
"dev:auth": "yarn workspace auth next dev",
"dev:cast": "yarn workspace cast next dev",
"dev:photos": "yarn workspace photos next dev",
"lint": "yarn prettier --check . && yarn workspaces run eslint .",
"lint-fix": "yarn prettier --write . && yarn workspaces run eslint --fix ."
},
"resolutions": {
"@sentry/cli": "1.75.0",
"libsodium": "0.7.9"
},
"devDependencies": {
"eslint": "^8",
"prettier": "^3",
"typescript": "^5"
}
}