-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.4 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.59.0",
"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",
"stop:infra": "docker compose stop database seaweedfs redis",
"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.0.0",
"@eslint/js": "^9.20.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-summary": "^2.0.2",
"eslint-plugin-file-progress": "^3.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-vue": "^10.6.2",
"grunt": "^1.6.1",
"grunt-bump": "^0.8.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.8.1",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.1.10"
},
"dependencies": {
"@mcap/core": "^2.1.7",
"class-transformer": "^0.5.1",
"cron-parser": "^5.4.0",
"fs-extra": "^11.2.0",
"minimatch": "^10.1.1",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@parcel/watcher",
"@scarf/scarf",
"@swc/core",
"better-sqlite3",
"core-js",
"cpu-features",
"esbuild",
"msgpackr-extract",
"protobufjs",
"ssh2",
"vue-demi"
],
"overrides": {
"@nestjs/common@<10.4.16": ">=10.4.16",
"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.104.1"
}
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}