-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "leader",
"private": true,
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"check": "turbo run check",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"test:e2e": "turbo run test:e2e",
"auth:generate": "turbo run auth:generate"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "10.0.1",
"@happy-dom/global-registrator": "^20.7.0",
"@testcontainers/postgresql": "^11.12.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"eslint": "10.0.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^15.0.0",
"happy-dom": "^20.7.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "0.7.2",
"svelte": "^5.53.6",
"testcontainers": "^11.12.0",
"turbo": "^2.4.0",
"typescript-eslint": "^8.0.0"
},
"dependencies": {},
"patchedDependencies": {
"playwright@1.58.2": "patches/playwright@1.58.2.patch"
}
}