-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.16 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "planningsup",
"displayName": "PlanningSup",
"version": "3.3.4",
"private": "true",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kernoeb/planningsup.git"
},
"keywords": [
"planningsup",
"planning",
"university"
],
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"test"
],
"catalog": {
"elysia": "1.4.29",
"@elysiajs/eden": "1.4.9",
"zod": "4.4.3",
"@better-auth/passkey": "1.6.23",
"better-auth": "1.6.23"
},
"catalogs": {
"types": {
"bun-types": "1.3.14"
},
"dev": {
"vite": "8.1.3",
"@vitejs/plugin-vue": "6.0.7",
"typescript": "6.0.3",
"vue-tsc": "3.3.7",
"@antfu/eslint-config": "9.1.0",
"eslint": "10.6.0"
},
"ui": {
"sass-embedded": "1.100.0",
"vue": "3.5.39",
"daisyui": "5.6.16",
"@tailwindcss/vite": "4.3.2",
"tailwindcss": "4.3.2"
}
}
},
"engines": {
"node": ">=24"
},
"scripts": {
"predev": "bun install; docker compose up -d --pull always; ln -sf AGENTS.md CLAUDE.md; ln -sf AGENTS.md GEMINI.md;",
"dev": "bun scripts/run dev",
"build": "bun scripts/run build",
"test:unit": "env -u PUBLIC_ORIGIN -u DATABASE_URL NODE_ENV=test bun test --max-concurrency=1 test/*.test.ts",
"coverage": "bun scripts/run coverage",
"test:e2e": "bun scripts/test.ts",
"test:e2e:safari": "bun scripts/test.ts --safari",
"test:e2e:headed": "bun scripts/test.ts --headed",
"test:e2e:debug": "bun scripts/test.ts --headed --verbose",
"test:integration": "bun scripts/test-integration.ts",
"test:integration:local": "bun scripts/test-integration.ts --skip-build --docker-image planningsup-test:local",
"test:integration:auth": "bun scripts/test-integration-auth.ts",
"test:integration:auth:local": "bun scripts/test-integration-auth.ts --skip-build",
"validate:workflows": "bun scripts/validate-workflows.ts",
"docker:build": "docker build --build-arg BUN_VERSION=$(cat .bun-version) -t test-planningsup --progress=plain .",
"lint": "bun scripts/run lint",
"lint-fix": "bun scripts/run lint-fix",
"typecheck": "bun scripts/run typecheck",
"release": "bun scripts/release.ts"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@playwright/test": "1.61.1",
"bun-types": "catalog:types",
"concurrently": "10.0.3",
"eslint": "catalog:dev",
"eslint-plugin-perfectionist": "5.10.0",
"lint-staged": "17.0.8",
"playwright": "1.61.1",
"simple-git-hooks": "2.13.1"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"core-js",
"esbuild",
"sharp"
],
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,md,mdx,json,yaml,yml}": [
"bun run lint-fix",
"bun run lint"
],
"*.{ts,tsx,vue}": [
"bun run typecheck"
]
},
"patchedDependencies": {
"@volar/typescript@2.4.28": "patches/@volar%2Ftypescript@2.4.28.patch"
},
"overrides": {
"@simplewebauthn/server": "13.3.2",
"temporal-polyfill": "0.3.2"
}
}