59 lines
2.0 KiB
JSON
59 lines
2.0 KiB
JSON
{
|
|
"name": "@spoon/backend",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"description": "Convex Backend for Spoon",
|
|
"author": "Gib",
|
|
"license": "MIT",
|
|
"exports": {
|
|
"./convex": "./convex/",
|
|
"./convex/*": "./convex/*",
|
|
"./types": "./types/index.ts"
|
|
},
|
|
"scripts": {
|
|
"sync-env": "sh ../../scripts/sync-convex-env ${INFISICAL_ENV:-dev}",
|
|
"dev": "bun sync-env && bun with-env convex dev",
|
|
"dev:tunnel": "bun sync-env && bun with-env convex dev",
|
|
"dev:web": "bun sync-env && bun with-env convex dev",
|
|
"setup": "bun sync-env && bun with-env convex dev --until-success",
|
|
"codegen": "convex codegen --typecheck disable",
|
|
"deploy": "convex deploy --typecheck disable",
|
|
"clean": "git clean -xdf .cache .turbo dist node_modules",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"lint": "eslint --flag unstable_native_nodejs_ts_config",
|
|
"typecheck": "tsc --noEmit",
|
|
"test:unit": "vitest run --project unit",
|
|
"test:integration": "vitest run --project integration --passWithNoTests",
|
|
"test:component": "vitest run --project component --passWithNoTests",
|
|
"with-env": "sh ../../scripts/with-env ${INFISICAL_ENV:-dev} --"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/auth-app": "^8.2.0",
|
|
"@octokit/rest": "^22.0.1",
|
|
"@oslojs/crypto": "^1.0.1",
|
|
"@react-email/components": "1.0.10",
|
|
"@react-email/render": "^2.0.4",
|
|
"convex": "catalog:convex",
|
|
"react": "catalog:react19",
|
|
"react-dom": "catalog:react19",
|
|
"usesend-js": "^1.6.3",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@edge-runtime/vm": "catalog:test",
|
|
"@spoon/eslint-config": "workspace:*",
|
|
"@spoon/prettier-config": "workspace:*",
|
|
"@spoon/tsconfig": "workspace:*",
|
|
"@spoon/vitest-config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"convex-test": "catalog:test",
|
|
"eslint": "catalog:",
|
|
"prettier": "catalog:",
|
|
"react-email": "5.2.10",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:test"
|
|
},
|
|
"prettier": "@spoon/prettier-config"
|
|
}
|