-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
{
"name": "candlewise-monorepo",
"version": "1.0.0",
"description": "CandleWise - Portfolio Management",
"private": true,
"workspaces": [
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && dotnet run",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && dotnet build --configuration Release",
"build:frontend": "cd frontend && npm run build",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && dotnet test",
"test:frontend": "cd frontend && npm run test",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"clean": "npm run clean:backend && npm run clean:frontend",
"clean:backend": "cd backend && dotnet clean",
"clean:frontend": "cd frontend && rm -rf .next node_modules"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"stock-exchange",
"asp.net-core",
"next.js",
"real-time-data",
"financial-api"
],
"author": "Pedro Camellon",
"license": "MIT"
}