-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.01 KB
/
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
{
"name": "dumber-dungeons",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently \"bun --cwd packages/client build\" \"bun --cwd packages/server start\"",
"start:dev": "concurrently \"bun --cwd packages/client build:dev\" \"bun --cwd packages/server start:dev\"",
"client:build": "bun --filter ./packages/client build",
"format:check": "bun --filter '*' format:check",
"format:fix": "bun --filter '*' format:fix",
"lint:check": "bun --filter '*' lint:check",
"lint:fix": "bun --filter '*' lint:fix",
"lint:inspect": "eslint -c packages/shared/eslint.config.mjs --inspect-config",
"type:check": "bun --filter '*' type:check",
"all:check": "bun type:check && bun format:check && bun lint:check && bun client:build",
"all:fix": "bun run format:fix && bun run lint:fix",
"all:test": "bun --filter '*' test"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@dumber-dungeons/shared": "workspace:./packages/shared",
"concurrently": "^9.1.0"
}
}