-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.64 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.64 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
{
"name": "chatwar",
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "pnpm dev:mock",
"dev:mock": "pnpm dev:web:mock",
"dev:full": "pnpm db:up && concurrently -n api,web -c blue,magenta \"pnpm dev:api\" \"pnpm dev:web:localserver\"",
"dev:all": "pnpm -r --parallel dev",
"dev:help": "echo \"dev (mock), dev:full (db+api+web)\"",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d postgres",
"dev:web": "pnpm --filter @chatwar/web dev",
"dev:web:mock": "pnpm --filter @chatwar/web dev:mock",
"dev:web:localserver": "pnpm --filter @chatwar/web dev:localserver",
"dev:api": "pnpm --filter @chatwar/api dev",
"build": "pnpm -r build",
"build:web": "pnpm -r --filter @chatwar/web... build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"verify": "pnpm lint && pnpm typecheck",
"clean": "pnpm -r clean",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"typescript-eslint": "^8.50.1"
}
}