-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 816 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 816 Bytes
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
{
"name": "nordeus-jobfair-2026",
"private": true,
"version": "0.1.0",
"description": "Nordeus Job Fair 2026 — Full Stack Challenge. Turn-based RPG (React + Express + TS).",
"workspaces": [
"shared",
"server",
"client"
],
"scripts": {
"dev": "npm-run-all --parallel dev:server dev:client",
"dev:server": "npm --workspace server run dev",
"dev:client": "npm --workspace client run dev",
"build": "npm --workspace shared run build && npm --workspace server run build && npm --workspace client run build",
"typecheck": "npm --workspace shared run typecheck && npm --workspace server run typecheck && npm --workspace client run typecheck"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.0.0"
}
}