2022-12-18 14:51:47 +00:00
|
|
|
{
|
|
|
|
"private": true,
|
2023-02-11 21:05:46 +01:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
2023-02-14 13:59:15 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
2024-04-12 18:43:26 +01:00
|
|
|
"build": "yarn workspace @snort/shared build && yarn workspace @snort/worker-relay build && yarn workspace @snort/system build && yarn workspace @snort/system-web build && yarn workspace @snort/system-react build && yarn workspace @snort/wallet build && yarn workspace @snort/app build",
|
2023-10-09 14:50:18 +01:00
|
|
|
"start": "yarn build && yarn workspace @snort/app start",
|
|
|
|
"test": "yarn build && yarn workspace @snort/app test && yarn workspace @snort/system test",
|
2023-11-06 14:04:03 +00:00
|
|
|
"pre:commit": "yarn workspace @snort/app intl-extract && yarn workspace @snort/app intl-compile && yarn prettier --write .",
|
2024-04-12 18:44:14 +01:00
|
|
|
"push-prod": "git switch snort-prod && git merge --ff-only main && git push && git checkout main",
|
2024-01-12 13:53:31 +00:00
|
|
|
"docs": "typedoc --entryPointStrategy packages ./packages/* --exclude ./packages/app --exclude ./packages/webrtc-server --name snort.social"
|
2023-03-26 12:42:13 +01:00
|
|
|
},
|
2023-07-22 19:37:46 +01:00
|
|
|
"prettier": {
|
|
|
|
"printWidth": 120,
|
|
|
|
"bracketSameLine": true,
|
2023-10-16 10:33:41 -03:00
|
|
|
"arrowParens": "avoid",
|
2024-02-20 11:28:02 +00:00
|
|
|
"trailingComma": "all",
|
|
|
|
"endOfLine": "lf"
|
2023-07-13 22:44:26 +01:00
|
|
|
},
|
2024-04-11 13:26:50 +01:00
|
|
|
"packageManager": "yarn@4.1.1",
|
2023-07-13 22:44:26 +01:00
|
|
|
"dependencies": {
|
2023-09-25 11:59:02 +01:00
|
|
|
"@cloudflare/workers-types": "^4.20230307.0",
|
|
|
|
"@tauri-apps/cli": "^1.2.3",
|
2023-08-26 22:48:15 +01:00
|
|
|
"eslint": "^8.48.0",
|
2023-09-25 11:59:02 +01:00
|
|
|
"prettier": "^3.0.3",
|
2023-08-26 22:48:15 +01:00
|
|
|
"typescript": "^5.2.2"
|
2024-01-12 13:53:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"typedoc": "^0.25.7"
|
2023-02-14 13:59:15 +00:00
|
|
|
}
|
2023-07-22 19:37:46 +01:00
|
|
|
}
|