-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.09 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
{
"name": "citadel",
"private": true,
"version": "0.1.0",
"description": "Admin dashboard for Gas City orchestrations — built for a single operator running a single city.",
"workspaces": [
"shared",
"backend",
"frontend"
],
"scripts": {
"build:shared": "npm --workspace shared run build",
"build:backend": "npm --workspace backend run build",
"build:frontend": "npm --workspace frontend run build",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"dev:backend": "npm --workspace backend run dev",
"dev:frontend": "npm --workspace frontend run dev",
"start": "node backend/dist/server.js",
"typecheck": "npm --workspace shared run typecheck && npm --workspace backend run typecheck && npm --workspace frontend run typecheck"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"author": "Charlie Coutts",
"repository": {
"type": "git",
"url": "https://github.com/Wldc4rd/citadel.git"
},
"homepage": "https://github.com/Wldc4rd/citadel",
"bugs": "https://github.com/Wldc4rd/citadel/issues"
}