-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "wafrn",
"version": "0.0.4",
"description": "wafrn monorepo",
"main": "index.ts",
"scripts": {
"full:upgrade": "git pull && pm2 restart all && npm run frontend:deploy",
"backend:prettier-format": "cd packages/backend && prettier --config .prettierrc '**/*.ts' --write",
"backend:develop": "cd packages/backend && tsx watch index.ts",
"backend:atproto": "cd packages/backend && tsx watch atproto.ts",
"backend:worker": "cd packages/backend && tsx utils/workers.ts",
"backend:serve": "cd packages/backend && tsx index.ts",
"backend:cohostImport": "cd packages/backend && tsx utils/maintenanceTasks/importcohost.ts",
"frontend:serve": "cd packages/frontend && ng serve",
"frontend:develop": "cd packages/frontend && ng serve --configuration development",
"frontend:develop:prod": "cd packages/frontend && ng serve --configuration devprod",
"frontend:build": "cd packages/frontend && ng build",
"frontend:deploy": "cd packages/frontend && ng build && rm -rf ../../frontend && mv dist/wafrn/browser ../../frontend",
"frontend:test": "cd packages/frontend && jest",
"vercel-build": "cd packages/frontend && ng build --configuration=vercel",
"lint": "cd packages/frontend && ng lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabboman/wafrn.git"
},
"author": "Gabriel Amador García",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gabboman/wafrn/issues"
},
"homepage": "https://github.com/gabboman/wafrn#readme",
"workspaces": [
"packages/frontend",
"packages/backend"
],
"devDependencies": {
"@eslint/config-array": "^0.19.0",
"@eslint/js": "^9.13.0",
"@eslint/plugin-kit": "^0.2.2",
"@types/showdown": "^2.0.6",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"tsx": "^4.19.1"
}
}