forked from gabboman/wafrn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 2.01 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
51
52
53
54
{
"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: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"
},
"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/jest": "^29.5.14",
"@types/showdown": "^2.0.6",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.2.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@atproto/api": "^0.13.14",
"tsx": "^4.19.1"
}
}