Files
cfw-autumn/server/package.json
2025-06-14 18:52:24 +02:00

99 lines
3.3 KiB
JSON

{
"name": "@autumn/server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development nodemon --no-deprecation --exec tsx src/index.ts --ignore scripts --ignore tests",
"start": "tsx src/index.ts",
"workers": "tsx watch src/workers.ts",
"workers:start": "node --no-deprecation dist/src/workers.js",
"build": "tsc -b tsconfig.build.json",
"prod": "tsc -b tsconfig.build.json && tsc-alias && node dist/src/index.js",
"prod:build": "tsc -b tsconfig.build.json && tsc-alias",
"prod:start": "node dist/src/index.js",
"cron": "tsx src/cron.ts",
"cron:start": "node --no-deprecation dist/src/cron.js",
"clean": "tsx src/clean.ts",
"testa-parallel": "mocha 'tests/alex/00_setup.ts' && mocha --parallel --timeout 10000000 'tests/alex/**/*.ts' --ignore 'tests/alex/00_setup.ts'",
"testa": "mocha 'tests/alex/00_setup.ts' && mocha --timeout 10000000 'tests/alex/01_free.ts' --ignore 'tests/alex/00_setup.ts'",
"test": "mocha --timeout 10000000 'tests/**/*.ts' --ignore 'tests/alex/**/*.ts'",
"test-custom": "mocha --timeout 1000000 'tests/01_product.ts'",
"db:pull": "NODE_OPTIONS='--import tsx' drizzle-kit pull",
"db:generate": "NODE_OPTIONS='--import tsx' drizzle-kit generate",
"db:migrate": "NODE_OPTIONS='--import tsx' drizzle-kit migrate",
"db:push": "NODE_OPTIONS='--import tsx' drizzle-kit push ",
"db:custom": "NODE_OPTIONS='--import tsx' drizzle-kit generate --custom --name=add_new_col"
},
"mocha": {
"node-option": [
"import=tsx"
]
},
"author": "Recase Inc.",
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.10",
"@anthropic-ai/sdk": "^0.32.1",
"@autumn/shared": "*",
"@clerk/express": "^1.3.22",
"@date-fns/tz": "^1.2.0",
"@date-fns/utc": "^2.1.0",
"@logtail/node": "^0.5.2",
"@supabase/supabase-js": "^2.46.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"ai": "^4.3.10",
"autumn-js": "^0.0.46",
"body-parser": "^1.20.3",
"bullmq": "^5.31.1",
"chai": "^5.1.2",
"chai-http": "^5.1.1",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"cron": "^3.5.0",
"csv-parse": "^5.6.0",
"csv-parser": "^3.2.0",
"currency-symbol-map": "^5.1.0",
"date-fns": "^4.1.0",
"decimal.js": "^10.5.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"express": "^4.21.1",
"fetch-retry": "^6.0.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.5.0",
"ksuid": "^3.0.0",
"lodash-es": "^4.17.21",
"nodemon": "^3.1.7",
"openai": "^4.85.2",
"pg": "^8.13.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"postgres": "^3.4.7",
"posthog-node": "^4.17.2",
"recaseai": "^0.0.37",
"resend": "^4.1.1",
"stripe": "^17.5.0",
"svix": "^1.45.1",
"tsc-alias": "^1.8.16",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-http": "^3.0.5",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.4",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.31.1",
"mocha": "^11.1.0",
"puppeteer": "^24.2.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.7.3"
}
}