-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.43 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "kleinkram",
"version": "0.63.2",
"main": "index.js",
"repository": "git@github.com:leggedrobotics/GrandTourDatasets.git",
"author": "Johann Schwabe <johann@schwabe.dev>",
"license": "MIT",
"private": true,
"scripts": {
"start": "docker compose build base && docker compose up --build -d",
"start:infra": "docker compose up -d database seaweedfs redis loki",
"stop:infra": "docker compose stop database seaweedfs redis loki",
"dev": "pnpm start:infra && dotenv -e .env -- pnpm --parallel --filter \"./backend\" --filter \"./frontend\" --filter \"./queueConsumer\" run start:dev",
"lint": "NODE_OPTIONS='--max-old-space-size=8192' eslint . --fix --cache",
"lint:check": "NODE_OPTIONS='--max-old-space-size=8192' eslint .",
"type-check": "tsc -b",
"eslint": "pnpm run type-check && pnpm run lint",
"eslint:check": "NODE_OPTIONS='--max-old-space-size=8192' pnpm run type-check && pnpm run lint:check",
"tsc:check": "pnpm run type-check",
"count-lint-ignores": "./scripts/count-lint-ignores.sh",
"prettier": "prettier --write --cache --experimental-cli .",
"prettier:check": "prettier --check .",
"bump": "grunt bumpVersion",
"bump:patch": "grunt bumpVersion:patch",
"bump:minor": "grunt bumpVersion:minor",
"bump:major": "grunt bumpVersion:major",
"validateVersions": "grunt validateVersions"
},
"devDependencies": {
"@eslint/compat": "^2.1.1",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"@vue/eslint-config-typescript": "^14.9.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-summary": "^2.0.2",
"eslint-plugin-file-progress": "4.0.0-beta.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unicorn": "^74.0.0",
"eslint-plugin-vue": "^10.11.0",
"grunt": "^1.6.3",
"grunt-bump": "^0.8.0",
"prettier": "^3.9.6",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.70.0",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.11"
},
"dependencies": {
"@mcap/core": "^2.2.2",
"class-transformer": "^0.5.1",
"cron-parser": "^5.10.1",
"fs-extra": "^11.4.0",
"minimatch": "^10.2.6",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@parcel/watcher",
"@scarf/scarf",
"@swc/core",
"core-js",
"cpu-features",
"esbuild",
"msgpackr-extract",
"protobufjs",
"ssh2",
"vue-demi"
],
"overrides": {
"@nestjs/common@<10.4.16": ">=10.4.16",
"better-sqlite3": "^13.0.3",
"esbuild@<=0.24.2": ">=0.25.0",
"got@<11.8.5": ">=11.8.5",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"tmp@<=0.2.3": ">=0.2.4",
"webpack": "5.111.1"
}
},
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
}