forked from b310-digital/teammapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "teammapper",
"version": "0.0.4",
"description": "Web application to create and work on mindmaps with multiple users.",
"author": "b310 digital gmbh",
"private": false,
"license": "MIT",
"engines": {
"npm": "~10.7.0",
"node": "~22.2"
},
"scripts": {
"build:prod": "npm run build:frontend:prod && cp teammapper-frontend/dist -TRv teammapper-backend/client && npm run build:backend:prod",
"prepare:prod": "npm --prefix teammapper-backend ci && npm --prefix teammapper-frontend ci",
"build:backend:prod": "npm --prefix teammapper-backend run build",
"build:frontend:prod": "GENERATE_SOURCEMAP=false npm --prefix teammapper-frontend run build:prod",
"clear": "rm teammapper-backend/dist teammapper-backend/client teammapper-frontend/dist",
"migrate:prod": "npm --prefix teammapper-backend run prod:typeorm:migrate",
"start:prod": "npm --prefix teammapper-backend run start:prod",
"build": "npm run prepare:prod && npm run build:prod && npm run migrate:prod",
"start": "npm run start:prod"
}
}