-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 936 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 936 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
27
28
29
30
{
"name": "project_nomad",
"version": "0.2.0",
"description": "Project Nomad - Fire Modeling System",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"start": "cross-env NODE_ENV=production npm run start --workspace=@nomad/backend",
"dev": "npm run dev:backend & npm run dev:frontend",
"dev:backend": "npm run dev --workspace=@nomad/backend",
"dev:frontend": "npm run dev --workspace=@nomad/frontend",
"build": "npm run build --workspaces",
"build:backend": "npm run build --workspace=@nomad/backend",
"build:frontend": "npm run build --workspace=@nomad/frontend",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"install:all": "npm install"
},
"author": "Franco Nogarin",
"license": "AGPL-3.0",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}