-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 895 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
29
30
31
32
33
{
"name": "@eschaton/playgrid",
"private": true,
"version": "0.2.20",
"type": "module",
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev -w client\" \"npm run dev -w server\"",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f postgres",
"build": "npm run build -w shared && npm run build -w server && npm run build -w client",
"test": "vitest run",
"test:e2e": "playwright test",
"lint": "eslint ."
},
"devDependencies": {
"@bradygaster/squad-cli": "^0.8.20",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"concurrently": "^9.0.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"tsx": "4.21.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}