forked from lunary-ai/lunary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 995 Bytes
/
package.json
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
{
"name": "lunary",
"private": "true",
"scripts": {
"start": "bun --filter './packages/frontend' --filter './packages/backend' start",
"start:backend": "bun --filter './packages/backend' start",
"start:backend:run": "bun --filter './packages/backend' start:run",
"start:frontend": "bun --filter './packages/frontend' start",
"build:frontend": "bun --filter './packages/frontend' build",
"migrate:db": "bun --filter './packages/backend' migrate:db",
"dev": "bun --elide-lines 0 --filter '*' dev ",
"test": "bun --filter './packages/e2e' test",
"clean": "rm -rf bun.lock & rm -rf node_modules && rm -rf packages/frontend/node_modules && rm -rf packages/backend/node_modules && rm -rf packages/frontend/.next && rm -rf packages/e2e/node_modules"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"dotenv": "^16.4.7",
"prettier": "^3.4.2"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}