-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "chopin",
"private": true,
"packageManager": "bun@1.3.2",
"type": "module",
"scripts": {
"dev": "bun scripts/dev.ts",
"dev:exe": "bun scripts/dev.ts --exe",
"db:up": "docker compose -f compose.yaml -f compose.local.yaml up -d --wait db",
"db:down": "docker compose -f compose.yaml -f compose.local.yaml down",
"docker:up": "docker compose -f compose.yaml -f compose.local.yaml up -d --build --wait app",
"docker:down": "docker compose -f compose.yaml -f compose.local.yaml down",
"test:postgres": "TEST_DATABASE_URL=postgresql://chopin:chopin@127.0.0.1:5432/chopin?sslmode=disable bun test apps/server/src/storage/postgres",
"migrate": "bun apps/server/src/storage/migrate.ts",
"build": "bun run --filter '@chopin/web' build",
"start": "bun run --filter '@chopin/server' start",
"ci": "dprint check && oxlint && bun scripts/check-tokens.ts",
"fix": "dprint fmt && oxlint --fix",
"types": "bun --filter '*' types && tsgo --noEmit --skipLibCheck -p e2e",
"e2e": "bun scripts/e2e.ts",
"e2e:ui": "bun scripts/e2e.ts --ui",
"e2e:browsers": "bun node_modules/@playwright/test/cli.js install chromium"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@types/bun": "catalog:bun",
"@typescript/native-preview": "7.0.0-dev.20260304.1",
"dprint": "0.50.2",
"oxlint": "1.51.0"
},
"patchedDependencies": {
"@mdxeditor/editor@4.1.0": "patches/@mdxeditor%2Feditor@4.1.0.patch"
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"catalogs": {
"bun": {
"@types/bun": "1.3.14"
},
"copilot": {
"@github/copilot": "1.0.80",
"@github/copilot-sdk": "1.0.11"
},
"diffs": {
"@pierre/diffs": "1.3.0"
},
"mdx": {
"@lexical/headless": "0.48.0",
"@lexical/link": "0.48.0",
"@lexical/list": "0.48.0",
"@lexical/react": "0.48.0",
"@lexical/rich-text": "0.48.0",
"@lexical/selection": "0.48.0",
"@lexical/table": "0.48.0",
"@lexical/utils": "0.48.0",
"@lexical/yjs": "0.48.0",
"@mdxeditor/editor": "4.1.0",
"@mdxeditor/gurx": "1.2.4",
"json-joy": "17.51.0",
"katex": "0.16.22",
"lexical": "0.48.0",
"mermaid": "11.12.0",
"y-protocols": "1.0.7",
"yjs": "13.6.31"
},
"react": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"ui": {
"@tailwindcss/vite": "4.3.0",
"tailwindcss": "4.3.0",
"vite": "7.3.1",
"vite-tsconfig-paths": "5.1.4"
}
}
}
}