-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "atrium",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "bun run scripts/dev.ts",
"test": "turbo run test",
"test:e2e": "bunx playwright test --config=e2e/playwright.config.ts",
"test:all": "bun run test && bun run test:e2e",
"lint": "turbo run lint",
"db:generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"db:migrate": "bun run --filter @atrium/database db:migrate",
"db:migrate:deploy": "bun run --filter @atrium/database db:migrate:deploy",
"db:seed": "bun run --filter @atrium/database db:seed",
"db:rls": "bun run --filter @atrium/database db:rls",
"clean": "turbo run clean",
"setup": "bun run scripts/setup.ts"
},
"packageManager": "bun@1.3.9",
"overrides": {
"minimatch": ">=10.2.3",
"serialize-javascript": ">=7.0.3",
"ajv": ">=8.18.0",
"kysely": ">=0.28.14",
"fast-xml-parser": ">=5.5.7"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"turbo": "^2.4.0",
"typescript": "^5.7.0"
},
"dependencies": {
"@sentry/nestjs": "^10.47.0",
"@sentry/nextjs": "^10.47.0"
}
}