-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.39 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
{
"name": "prism",
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "bun run sync && bun lefthook install",
"sync": "bun run --filter=* sync",
"check": "bun run check:lint && bun run --filter=* check && bun run check:format",
"fix": "bun run fix:lint && bun run fix:format",
"tidy": "bun run fix && bun run check",
"check:format": "prettier --check .",
"fix:format": "prettier --write . --log-level warn",
"check:lint": "bun biome check",
"fix:lint": "bun biome check --fix --unsafe",
"db": "cd apps/server && bun --env-file=../../.env run drizzle-kit",
"db:seed": "bun --env-file=.env run scripts/seed.ts",
"test:e2e": "PLAYWRIGHT_CHROMIUM_PATH=$(which chromium) playwright test --config=e2e/playwright.config.ts",
"test:e2e:ui": "PLAYWRIGHT_CHROMIUM_PATH=$(which chromium) playwright test --config=e2e/playwright.config.ts --ui",
"up": "devenv processes up -d",
"down": "devenv processes down",
"tail": "tail -f ./.devenv/processes.log"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@playwright/test": "^1.57.0",
"@sveltejs/mcp": "^0.1.13",
"lefthook": "^2.0.8",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.45.6"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}