ente/web/package.json

39 lines
1.8 KiB
JSON
Raw Normal View History

2020-09-09 21:09:51 +00:00
{
2023-04-29 00:29:57 +00:00
"name": "ente-web",
2024-02-16 15:59:29 +00:00
"version": "0.0.0",
"private": true,
2023-05-29 02:06:02 +00:00
"workspaces": [
2024-02-16 15:59:29 +00:00
"apps/*",
"packages/*"
2023-05-29 02:06:02 +00:00
],
"scripts": {
2024-02-22 06:52:07 +00:00
"build": "yarn build:photos",
2024-02-17 05:46:37 +00:00
"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/compare/deploy/accounts...main?quick_pull=1&title=[web]+Deploy+accounts&body=Deploy+accounts.ente.io'",
"deploy:auth": "open 'https://github.com/ente-io/ente/compare/deploy/auth...main?quick_pull=1&title=[web]+Deploy+auth&body=Deploy+auth.ente.io'",
"deploy:cast": "open 'https://github.com/ente-io/ente/compare/deploy/cast...main?quick_pull=1&title=[web]+Deploy+cast&body=Deploy+cast.ente.io'",
"deploy:photos": "open 'https://github.com/ente-io/ente/compare/deploy/photos...main?quick_pull=1&title=[web]+Deploy+photos&body=Deploy+web.ente.io'",
2024-02-22 06:52:07 +00:00
"dev": "yarn dev:photos",
"dev:accounts": "yarn workspace accounts next dev",
2024-02-24 09:16:02 +00:00
"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 .",
2024-02-16 10:50:16 +00:00
"lint-fix": "yarn prettier --write . && yarn workspaces run eslint --fix ."
},
2024-02-24 09:16:02 +00:00
"resolutions": {
"@sentry/cli": "1.75.0",
"libsodium": "0.7.9"
},
"devDependencies": {
"eslint": "^8",
2024-02-22 06:06:17 +00:00
"prettier": "^3",
"prettier-plugin-organize-imports": "^1.0.0",
"typescript": "^5"
}
2023-04-29 15:16:40 +00:00
}