forked from gabboman/wafrn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.32 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
{
"name": "wafrn",
"version": "0.0.4",
"description": "wafrn monorepo",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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 && nodemon index.ts",
"backend:worker": "cd packages/backend && ts-node utils/workers.ts",
"backend:serve": "cd packages/backend && ts-node index.ts",
"frontend:serve": "cd packages/frontend && ng serve",
"frontend:build": "cd packages/frontend && ng build",
"frontend:deploy": "cd packages/frontend && ng build && rm -rf ../../frontend && mv dist/wafrn/browser ../../frontend",
"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": {
"typescript": "^5.4.5"
}
}