-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.22 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 4.22 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
89
90
91
92
93
94
95
96
97
{
"name": "compass",
"description": "Compass Monorepo",
"license": "MIT",
"version": "1.0.0",
"private": true,
"browserslist": "last 2 Chrome versions",
"main": "",
"engines": {
"node": ">=24.0.0"
},
"_moduleAliases": {
"@compass/backend": "packages/backend/src",
"@compass/core": "packages/core/src",
"@compass/scripts": "packages/scripts/src",
"@compass/sync": "packages/sync/src"
},
"scripts": {
"cli": "bun packages/scripts/src/cli.ts",
"debug:supertokens": "export DEBUG=com.supertokens &&bun run dev:backend",
"debug:web": "http-server build/web/",
"dev:backend -verbose": "export DEBUG=* &&bun run dev:backend",
"dev:backend": "bun run dev:ports backend && cd packages/backend && bun --watch src/app.ts",
"dev:ports": "bun packages/scripts/src/commands/dev-ports.ts",
"dev:sync": "cd packages/sync && bun --watch src/app.ts",
"dev:update": "git checkout main && git pull &&bun install",
"dev:web": "bun run dev:ports web && cd packages/web &&bun run dev.ts",
"lint": "bun packages/scripts/src/testing/check-semantic-colors.ts && biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"knip": "knip --include files,exports,nsExports",
"test": "bun test:core && bun test:sync && bun test:web && bun test:backend && bun test:scripts",
"test:a11y": "bunx playwright test e2e/accessibility",
"test:e2e": "bunx playwright test",
"test:backend": "bun packages/scripts/src/testing/test-mongo-env.ts backend --",
"test:backend:fast": "bun packages/scripts/src/testing/test-parallel.ts backend-fast -- --path-ignore-patterns '**/*.db.test.ts'",
"test:backend:db": "bun packages/scripts/src/testing/test-mongo-env.ts backend -- './packages/backend/src/**/*.db.test.ts'",
"test:core": "bun packages/scripts/src/testing/test-parallel.ts core --",
"test:sync": "bun packages/scripts/src/testing/test-mongo-env.ts sync --",
"test:sync:fast": "bun packages/scripts/src/testing/test-parallel.ts sync-fast -- --path-ignore-patterns '**/*.db.test.ts'",
"test:web": "bun packages/scripts/src/testing/test-parallel.ts web --",
"test:scripts": "bun packages/scripts/src/testing/test-mongo-env.ts scripts --",
"test:scripts:fast": "bun packages/scripts/src/testing/test-parallel.ts scripts-fast -- --path-ignore-patterns '**/*.db.test.ts'",
"test:scripts:db": "bun packages/scripts/src/testing/test-mongo-env.ts scripts -- './packages/scripts/src/**/*.db.test.ts'",
"type-check": "bunx typescript@7.0.2 --noEmit && bunx typescript@7.0.2 -p packages/web/tsconfig.app.json --noEmit && bun run type-check:web-tests",
"type-check:web-tests": "bunx typescript@7.0.2 -p packages/web/tsconfig.test.json --noEmit",
"verify": "bun packages/scripts/src/testing/verify.ts",
"build:backend": "bun packages/scripts/src/commands/build.backend.ts",
"build:sync": "bun packages/scripts/src/commands/build.sync.ts",
"build:web": "cd packages/web && bun run build.ts",
"sync:backup": "bun packages/scripts/src/commands/sync-backup.ts",
"sync:restore": "bun packages/scripts/src/commands/sync-restore.ts"
},
"dependencies": {
"@compass/backend": "*",
"@compass/core": "*",
"module-alias": "^2.2.2",
"posthog-js": "^1.409.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@biomejs/biome": "^2.4.12",
"@playwright/test": "^1.60.0",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.33",
"@types/node": "^22.13.10",
"@types/node-fetch": "^2.6.13",
"axe-core": "^4.12.1",
"bun-types": "^1.3.14",
"express": "^4.17.1",
"knip": "^6.29.0",
"typescript": "7.0.2"
},
"resolutions": {
"glob": "^13.0.6",
"google-auth-library": "^10.5.0",
"gaxios": "^7.1.3",
"typescript": "7.0.2",
"onetime": "^5.1.2"
},
"overrides": {
"glob": "^13.0.6",
"google-auth-library": "^10.5.0",
"gaxios": "^7.1.3",
"typescript": "7.0.2",
"onetime": "^5.1.2"
},
"workspaces": [
"packages/*"
],
"packageManager": "bun@1.3.14",
"patchedDependencies": {
"@tanstack/react-router@1.170.17": "patches/@tanstack%2Freact-router@1.170.17.patch"
}
}