forked from nimbusdotstorage/Nimbus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.09 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
{
"name": "nimbus",
"version": "0.1.0",
"type": "module",
"private": true,
"devDependencies": {
"@nimbus/eslint": "workspace:*",
"@nimbus/tsconfig": "workspace:*",
"concurrently": "^9.1.2",
"eslint": "^9.29.0",
"husky": "^9.1.7",
"knip": "^5.61.2",
"lint-staged": "^16.1.2",
"oxlint": "^1.1.0",
"prettier": "^3.5.3",
"prettier-plugin-sort-imports": "^1.8.8",
"prettier-plugin-tailwindcss": "^0.6.12",
"typescript": "^5"
},
"scripts": {
"knip": "knip-bun --config knip.config.ts",
"dev:web": "bun --elide-lines 0 --filter @nimbus/web --env-file .env dev",
"dev:server": "bun --elide-lines 0 --filter @nimbus/server --env-file .env dev",
"dev": "concurrently --names \"WEB,SERVER\" --prefix-colors \"cyan,magenta\" --prefix \"[{name}]\" --kill-others-on-fail \"bun --env-file .env dev:web\" \"bun --env-file .env dev:server\"",
"dev:verbose": "bun --elide-lines 0 --filter \"*\" --env-file .env dev",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d",
"db:migrate": "bun --elide-lines 0 --filter @nimbus/db --env-file .env migrate",
"db:studio": "bun --elide-lines 0 --filter @nimbus/db --env-file .env studio",
"build:web": "bun run --cwd=apps/web build",
"build:server": "bun run --cwd=apps/server build",
"build": "concurrently --names \"WEB,SERVER\" --prefix-colors \"cyan,magenta\" --prefix \"[{name}]\" --kill-others-on-fail \"bun run --cwd=apps/web build\" \"bun run --cwd=apps/server build\"",
"start:web": "bun run --cwd=apps/web start",
"start:server": "bun run --cwd=apps/server start",
"start": "concurrently --names \"WEB,SERVER\" --prefix-colors \"cyan,magenta\" --prefix \"[{name}]\" --kill-others-on-fail \"bun run --cwd=apps/web start\" \"bun run --cwd=apps/server start\"",
"format": "bun prettier . --write --list-different",
"format:check": "bun prettier . --check",
"lint": "oxlint; eslint .; bun run --cwd=apps/web lint",
"lint:fix": "oxlint --fix; eslint . --fix; bun run --cwd=apps/web lint --fix",
"prepare": "husky"
},
"workspaces": [
"apps/*",
"packages/*"
]
}