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",
|
2023-04-18 21:29:40 +00:00
|
|
|
"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
|
|
|
],
|
2023-04-18 21:29:40 +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",
|
2024-04-04 05:40:34 +00:00
|
|
|
"build:payments": "yarn workspace payments build",
|
2024-02-17 03:41:53 +00:00
|
|
|
"build:photos": "yarn workspace photos next build",
|
2024-04-04 09:45:50 +00:00
|
|
|
"build:staff": "yarn workspace staff build",
|
2024-03-06 06:48:10 +00:00
|
|
|
"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'",
|
2024-03-28 05:32:47 +00:00
|
|
|
"deploy:payments": "open 'https://github.com/ente-io/ente/compare/deploy/payments...main?quick_pull=1&title=[web]+Deploy+payments&body=Deploy+payments.ente.io'",
|
2024-03-06 06:48:10 +00:00
|
|
|
"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",
|
2024-03-28 05:32:47 +00:00
|
|
|
"dev:accounts": "yarn workspace accounts next dev -p 3001",
|
2024-02-24 09:16:02 +00:00
|
|
|
"dev:albums": "yarn workspace photos next dev -p 3002",
|
2024-05-17 09:05:10 +00:00
|
|
|
"dev:auth": "yarn workspace auth next dev -p 3000",
|
2024-03-29 06:28:42 +00:00
|
|
|
"dev:cast": "yarn workspace cast next dev -p 3001",
|
2024-04-04 05:40:34 +00:00
|
|
|
"dev:payments": "yarn workspace payments dev",
|
2024-05-17 09:05:10 +00:00
|
|
|
"dev:photos": "yarn workspace photos next dev -p 3000",
|
2024-04-04 09:45:50 +00:00
|
|
|
"dev:staff": "yarn workspace staff dev",
|
2024-05-15 08:29:10 +00:00
|
|
|
"lint": "concurrently --names 'prettier,eslint,tsc' \"yarn prettier --check --log-level warn .\" \"yarn workspaces run eslint --report-unused-disable-directives .\" \"yarn workspaces run tsc\"",
|
|
|
|
"lint-fix": "concurrently --names 'prettier,eslint,tsc' \"yarn prettier --write --log-level warn .\" \"yarn workspaces run eslint --report-unused-disable-directives --fix .\" \"yarn workspaces run tsc\"",
|
2024-04-01 11:43:06 +00:00
|
|
|
"preview": "yarn preview:photos",
|
2024-03-30 12:23:01 +00:00
|
|
|
"preview:accounts": "yarn build:accounts && python3 -m http.server -d apps/accounts/out 3001",
|
2024-03-30 15:29:05 +00:00
|
|
|
"preview:auth": "yarn build:auth && python3 -m http.server -d apps/auth/out 3000",
|
2024-03-30 12:23:01 +00:00
|
|
|
"preview:cast": "yarn build:cast && python3 -m http.server -d apps/accounts/out 3001",
|
2024-04-04 05:40:34 +00:00
|
|
|
"preview:payments": "yarn workspace payments preview",
|
2024-04-04 09:45:50 +00:00
|
|
|
"preview:photos": "yarn build:photos && python3 -m http.server -d apps/photos/out 3000",
|
|
|
|
"preview:staff": "yarn workspace staff preview"
|
2023-04-18 21:29:40 +00:00
|
|
|
},
|
2024-02-24 09:16:02 +00:00
|
|
|
"resolutions": {
|
|
|
|
"libsodium": "0.7.9"
|
|
|
|
},
|
2023-04-18 21:29:40 +00:00
|
|
|
"devDependencies": {
|
2024-05-15 08:29:10 +00:00
|
|
|
"concurrently": "^8.2.2",
|
2024-02-21 15:42:11 +00:00
|
|
|
"eslint": "^8",
|
2024-02-22 06:06:17 +00:00
|
|
|
"prettier": "^3",
|
2024-02-22 06:37:16 +00:00
|
|
|
"typescript": "^5"
|
2024-05-16 10:13:02 +00:00
|
|
|
},
|
|
|
|
"packageManager": "yarn@1.22.21"
|
2023-04-29 15:16:40 +00:00
|
|
|
}
|