-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 999 Bytes
/
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
{
"name": "accountingapp",
"version": "0.18.5",
"description": "Accounting App is a project which helps to keep an overview of balances of personal wallets.",
"main": "index.js",
"scripts": {
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"start:dev:backend": "npm run -w backend start:dev",
"start:dev:frontend": "npm run -w frontend start:dev",
"build:backend": "npm run -w backend build",
"build:frontend": "npm run -w frontend build:static",
"build:shared": "npm run -w shared build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proohit/accountingapp.git"
},
"keywords": [
"accounting",
"nestjs",
"nextjs",
"mui"
],
"author": "proohit",
"license": "MIT",
"bugs": {
"url": "https://github.com/proohit/accountingapp/issues"
},
"homepage": "https://github.com/proohit/accountingapp#readme",
"workspaces": [
"backend",
"frontend",
"shared"
]
}