-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "portfolio",
"version": "0.0.1",
"private": true,
"scripts": {
"version": "node scripts/version.mjs",
"version:frontend": "node scripts/version.mjs frontend",
"version:backend": "node scripts/version.mjs backend",
"install:all": "npm install",
"install:ci": "npm ci",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=portfolio-frontend",
"dev:backend": "npm run dev --workspace=portfolio-backend",
"build": "npm run build --workspaces",
"build:frontend": "npm run build --workspace=portfolio-frontend",
"generate-qr": "npm run generate-qr --workspace=portfolio-frontend",
"build:backend": "npm run build --workspace=portfolio-backend",
"test": "npm run test --workspaces --if-present",
"test:frontend": "npm run test --workspace=portfolio-frontend --if-present",
"test:backend": "npm run test --workspace=portfolio-backend --if-present"
},
"devDependencies": {
"concurrently": "^9.0.0"
},
"workspaces": [
"portfolio-frontend",
"portfolio-backend"
]
}