-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.35 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
{
"name": "life-ustc-server",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "USTC Life Server - Course and schedule management API using SvelteKit",
"packageManager": "bun@1.3.13",
"engines": {
"bun": ">=1.3.13 <1.4"
},
"overrides": {
"graphql": "16.14.2"
},
"scripts": {
"dev": "vite dev --host 127.0.0.1 --port 3000 --strictPort",
"build": "vite build",
"app:prepare": "svelte-kit sync && prisma generate",
"svelte:sync": "svelte-kit sync",
"auth:cleanup": "bun run src/features/auth/server/auth-record-cleanup-cli.ts",
"db:generate": "prisma generate",
"db:migrate:deploy": "prisma migrate deploy",
"static:load": "bun run src/static-loader/cli.ts",
"e2e:server": "wrangler dev --config wrangler.e2e.jsonc --ip 127.0.0.1 --port 3000 --local",
"format": "biome format",
"hooks:install": "git config core.hooksPath .githooks",
"openapi:generate": "bun run scripts/openapi/generate.ts",
"openapi:check": "bun run openapi:generate && git diff --exit-code public/openapi.generated.json",
"release": "semantic-release"
},
"dependencies": {
"@better-auth/oauth-provider": "^1.6.11",
"@better-auth/passkey": "1.6.14",
"@escape.tech/graphql-armor": "3.2.0",
"@graphql-tools/executor": "1.5.6",
"@graphql-yoga/plugin-disable-introspection": "2.22.2",
"@internationalized/date": "^3.12.2",
"@lucide/svelte": "^1.23.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "7.8.0",
"@scalar/api-reference": "^1.59.3",
"better-auth": "^1.6.11",
"clsx": "^2.1.1",
"dataloader": "2.2.3",
"dayjs": "^1.11.20",
"diff": "^9.0.0",
"dotenv": "^17.4.2",
"graphql": "16.14.2",
"graphql-yoga": "5.21.2",
"ical-generator": "^10.2.0",
"jose": "^6.2.3",
"katex": "^0.16.47",
"pinyin-pro": "^3.28.1",
"prisma": "7.8.0",
"rehype-attr": "^4.1.3",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-directive": "^4.0.0",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@playwright/test": "^1.60.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.63.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.1",
"ajv": "^8.20.0",
"bits-ui": "^2.18.1",
"mode-watcher": "^1.1.0",
"semantic-release": "24.2.9",
"shadcn-svelte": "1.3.0",
"svelte": "^5.56.2",
"svelte-check": "^4.6.0",
"svelte-sonner": "^1.1.0",
"tailwindcss": "^4.3.0",
"ts-morph": "^28.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.7",
"wrangler": "4.100.0",
"zod-openapi": "^6.0.0"
}
}