forked from useautumn/autumn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.92 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.92 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
{
"name": "autumn",
"private": true,
"workspaces": {
"packages": [
"server",
"shared",
"vite",
"scripts",
"apps/checkout"
],
"catalog": {
"stripe": "19.3.0-beta.1",
"drizzle-orm": "0.43.1",
"drizzle-kit": "^0.31.1",
"@sentry/bun": "10.38.0",
"@clickhouse/client": "1.11.2",
"@date-fns/utc": "2.1.0",
"@better-auth/dash": "0.1.6",
"@orpc/contract": "^1.0.0",
"@orpc/client": "^1.0.0",
"@orpc/openapi-client": "^1.0.0"
}
},
"overrides": {
"@better-auth/core": "1.4.12",
"better-auth": "1.4.12",
"@modelcontextprotocol/sdk": "1.26.0",
"@isaacs/brace-expansion": "5.0.1",
"fast-xml-parser": "5.3.4",
"esbuild": "0.25.0",
"diff": "8.0.3",
"@smithy/config-resolver": "^4.4.0",
"lodash": "4.17.23",
"lodash-es": "4.17.23"
},
"resolutions": {
"@better-auth/core": "1.4.12",
"better-auth": "1.4.12",
"@modelcontextprotocol/sdk": "1.26.0",
"@isaacs/brace-expansion": "5.0.1",
"fast-xml-parser": "5.3.4",
"esbuild": "0.25.0",
"diff": "8.0.3",
"@smithy/config-resolver": "^4.4.0",
"lodash": "4.17.23",
"lodash-es": "4.17.23"
},
"type": "module",
"scripts": {
"dev": "bun scripts/dev.ts",
"vite:build": "bun -F @autumn/vite build:bun",
"d": "lsof -ti:8080 -ti:3000 | xargs kill -9 2>/dev/null || true; ENV_FILE=.env infisical run --env=dev -- bun scripts/dev.ts",
"p": "ENV_FILE=.env.prod infisical run --env=prod -- bun scripts/dev.ts",
"setup": "node scripts/setup/setup.js",
"setup:test": "infisical run --env=dev -- bun scripts/setup/setup-test.ts",
"t": "infisical run --env=dev -- bun scripts/test.ts",
"migrate-functions": "infisical run --env=dev -- bun scripts/migrations/migrate-functions.ts",
"migrate-functions:prod": "infisical run --env=prod -- bun scripts/migrations/migrate-functions.ts",
"validate-schema": "infisical run --env=prod -- bun scripts/migrations/validate-schema.ts",
"setupci": "node scripts/setup/setupci.js",
"replicate": "bun scripts/db/replicate.ts",
"db:pull": "bun scripts/db/pull.ts",
"db:push": " bun -F @autumn/shared db:push",
"db:generate": "bun -F @autumn/shared db:generate",
"db:migrate": " bun -F @autumn/shared db:migrate",
"test:integration": "cd server && bun test:integration",
"q": "lsof -ti:8080 -ti:3000 | xargs kill -9",
"knip": "knip",
"knip:fix": "knip --fix",
"knip:fix-all": "knip --fix --allow-remove-files",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.985.0",
"@better-auth/core": "1.4.12",
"@better-auth/oauth-provider": "1.4.12",
"@wooorm/starry-night": "^3.8.0",
"ag-charts-react": "^12.3.0",
"better-auth": "1.4.12",
"chalk": "^5.6.2",
"drizzle-orm": "catalog:",
"posthog-node": "^5.24.1",
"tailwind-scrollbar-hide": "^4.0.0"
},
"devDependencies": {
"@better-auth/cli": "^1.4.12",
"@biomejs/biome": "^2.2.7",
"@types/node": "^24.9.1",
"concurrently": "^9.2.1",
"dotenv": "^16.6.1",
"husky": "^9.1.7",
"inquirer": "^12.10.0"
}
}