rallly/packages/billing/package.json
2025-04-27 15:16:38 +01:00

26 lines
795 B
JSON

{
"name": "@rallly/billing",
"version": "0.0.0",
"private": true,
"exports": {
".": "./src/index.ts",
"./*": "./src/*.ts"
},
"scripts": {
"checkout-expiry": "dotenv -e ../../.env -- tsx ./src/scripts/checkout-expiry.ts",
"subscription-data-sync": "dotenv -e ../../.env -- tsx ./src/scripts/subscription-data-sync.ts",
"sync-payment-methods": "dotenv -e ../../.env -- tsx ./src/scripts/sync-payment-methods.ts",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint ./src"
},
"dependencies": {
"@radix-ui/react-radio-group": "^1.2.3",
"@rallly/database": "workspace:*",
"@rallly/ui": "workspace:*",
"stripe": "^13.2.0"
},
"devDependencies": {
"@rallly/eslint-config": "workspace:*",
"@rallly/tsconfig": "workspace:*"
}
}