-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 776 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
26
{
"name": "gridfarm",
"private": true,
"version": "0.1.0",
"description": "GridFarm — gerenciador de fazenda de impressão 3D",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"dev:server": "npm run dev -w @gridfarm/server",
"dev:web": "npm run dev -w @gridfarm/web",
"build": "npm run build -w @gridfarm/shared && npm run build -w @gridfarm/web && npm run build -w @gridfarm/server",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"start": "npm start -w @gridfarm/server"
},
"allowScripts": {
"better-sqlite3@11.10.0": true,
"esbuild@0.28.2": true
}
}