unoffical wafrn mirror wafrn.net
atproto social-network activitypub
at sync-passwords 51 lines 2.0 kB view raw
1{ 2 "name": "wafrn", 3 "version": "2025.7.3", 4 "description": "wafrn", 5 "main": "index.ts", 6 "scripts": { 7 "full:upgrade": "git pull && pm2 restart all && npm run frontend:deploy", 8 "backend:prettier-format": "cd packages/backend && prettier --config .prettierrc '**/*.ts' --write", 9 "backend:develop": "cd packages/backend && tsx watch index.ts", 10 "backend:atproto": "cd packages/backend && tsx watch atproto.ts", 11 "backend:worker": "cd packages/backend && tsx utils/workers.ts", 12 "backend:serve": "cd packages/backend && tsx index.ts", 13 "backend:cohostImport": "cd packages/backend && tsx utils/maintenanceTasks/importcohost.ts", 14 "frontend:serve": "cd packages/frontend && ng serve", 15 "frontend:develop": "cd packages/frontend && ng serve --configuration development", 16 "frontend:develop:prod": "cd packages/frontend && ng serve --configuration devprod", 17 "frontend:build": "cd packages/frontend && ng build", 18 "frontend:deploy": "cd packages/frontend && ng build && rm -rf ../../frontend && mv dist/wafrn/browser ../../frontend", 19 "frontend:test": "cd packages/frontend && jest", 20 "vercel-build": "cd packages/frontend && ng build --configuration=vercel", 21 "lint": "cd packages/frontend && ng lint --fix" 22 }, 23 "repository": { 24 "type": "git", 25 "url": "git+https://github.com/gabboman/wafrn.git" 26 }, 27 "author": "Gabriel Amador García", 28 "license": "AGPL-3.0-or-later", 29 "bugs": { 30 "url": "https://github.com/gabboman/wafrn/issues" 31 }, 32 "homepage": "https://github.com/gabboman/wafrn#readme", 33 "workspaces": [ 34 "packages/frontend", 35 "packages/backend" 36 ], 37 "devDependencies": { 38 "@eslint/config-array": "^0.19.0", 39 "@eslint/js": "^9.13.0", 40 "@eslint/plugin-kit": "^0.3.3", 41 "@types/showdown": "^2.0.6", 42 "eslint": "^9.13.0", 43 "globals": "^15.11.0", 44 "typescript": "^5.8.0", 45 "typescript-eslint": "^8.12.2" 46 }, 47 "dependencies": { 48 "cheerio": "^1.1.0", 49 "tsx": "^4.19.1" 50 } 51}