-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.91 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.91 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
{
"name": "anki-splitter",
"version": "1.0.0",
"private": true,
"description": "Anki Card Splitter - Web GUI for managing Anki cards",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"VITE_API_PROXY_TARGET=http://localhost:3000 bun run dev:web\"",
"dev:server": "bun run --watch packages/server/src/index.ts",
"dev:web": "ANKI_SPLITTER_API_KEY=${ANKI_SPLITTER_API_KEY:-} bun run --cwd packages/web dev",
"lint": "bun run lint:core && bun run lint:server && bun run lint:web",
"lint:core": "bun run --cwd packages/core lint",
"lint:server": "bun run --cwd packages/server lint",
"lint:web": "bun run --cwd packages/web lint",
"typecheck": "bun run typecheck:core && bun run typecheck:server && bun run typecheck:web",
"typecheck:core": "bun run --cwd packages/core typecheck",
"typecheck:server": "bun run --cwd packages/server typecheck",
"typecheck:web": "bun run --cwd packages/web typecheck",
"test": "bun run test:core && bun run test:server && bun run test:web",
"test:core": "bun run --cwd packages/core test",
"test:server": "bun run --cwd packages/server test",
"test:web": "bun run --cwd packages/web test",
"build": "bun run build:core && bun run build:server && bun run build:web",
"build:core": "bun run --cwd packages/core build",
"build:server": "bun run --cwd packages/server build",
"build:web": "bun run --cwd packages/web build",
"check:quick": "bun run lint && bun run typecheck",
"check": "bun run check:quick && bun run test && bun run build",
"check:full": "bun run check",
"history:sync": "bun run --cwd packages/server history:sync"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.0.0",
"concurrently": "^8.2.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}