-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.25 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"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.9.0",
"node": "~25.0"
},
"scripts": {
"dev": "concurrently \"pnpm --filter teammapper-backend start:dev\" \"pnpm --filter teammapper-frontend start\"",
"backend:dev": "pnpm --filter teammapper-backend start:dev",
"frontend:dev": "pnpm --filter teammapper-frontend start",
"build": "pnpm run build:prod",
"build:prod": "pnpm run build:frontend:prod && cp teammapper-frontend/dist -TRv teammapper-backend/client && pnpm run build:backend:prod",
"build:backend:prod": "pnpm --filter teammapper-backend run build",
"build:frontend:prod": "GENERATE_SOURCEMAP=false pnpm --filter teammapper-frontend run build:prod",
"clean": "rm -rf teammapper-backend/dist teammapper-backend/client teammapper-frontend/dist",
"format": "pnpm --filter '*' run format",
"install:frozen": "pnpm install --frozen-lockfile",
"lint": "pnpm --filter '*' run lint",
"migrate:dev": "pnpm --filter teammapper-backend run dev:typeorm:migrate",
"migrate:prod": "pnpm --filter teammapper-backend run prod:typeorm:migrate",
"start": "pnpm run start:prod",
"start:prod": "pnpm --filter teammapper-backend run start:prod",
"test": "pnpm --filter '*' run test",
"test:backend": "pnpm --filter teammapper-backend run test",
"test:frontend": "pnpm --filter teammapper-frontend run test",
"test:e2e": "pnpm --filter teammapper-frontend exec playwright test",
"tsc": "pnpm --filter '*' run tsc"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^11.4.1",
"concurrently": "9.2.1",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"secretlint": "^11.4.1",
"typescript": "~5.9.3"
},
"pnpm": {
"overrides": {
"multer@<2.1.1": "2.1.1",
"serialize-javascript@<7.0.3": "7.0.4",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0",
"underscore@<=1.13.7": "1.13.8",
"undici@>=7.0.0 <7.24.0": "7.24.0",
"file-type@>=13.0.0 <=21.3.1": "21.3.2",
"socket.io-parser@>=4.0.0 <4.2.6": "4.2.6",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4"
}
}
}