-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 753 Bytes
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
{
"name": "@webcraft/repo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "lerna run dev --stream",
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"test:watch": "lerna run test:watch --stream",
"test:e2e": "lerna run test:e2e --stream",
"test:e2e:watch": "lerna run test:e2e:watch --stream",
"lint": "lerna run lint --stream",
"db:generate": "lerna run db:generate --stream",
"db:migrate": "lerna run db:migrate --stream",
"db:studio": "lerna run db:studio --stream"
},
"devDependencies": {
"bun-types": "1.0.18",
"lerna": "8.0.1"
},
"dependencies": {
"@biomejs/biome": "^1.4.1",
"@elysiajs/eden": "^0.7.7"
}
}